|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 | 6 |
|
| 7 | + <properties> |
| 8 | + <maven.compiler.source>8</maven.compiler.source> |
| 9 | + <maven.compiler.target>8</maven.compiler.target> |
| 10 | + <buildVersion>1.0.0-SNAPSHOT</buildVersion> |
| 11 | + </properties> |
| 12 | + |
7 | 13 | <groupId>org.javawebstack</groupId>
|
8 | 14 | <artifactId>web-utils</artifactId>
|
9 |
| - <version>1.0-SNAPSHOT</version> |
| 15 | + <version>${buildVersion}</version> |
10 | 16 |
|
11 |
| - <repositories> |
12 |
| - <repository> |
13 |
| - <id>javawebstack</id> |
14 |
| - <url>https://repo.javawebstack.org</url> |
15 |
| - </repository> |
16 |
| - </repositories> |
| 17 | + <name>web-utils</name> |
| 18 | + <description>Utilties to reduce the boilerplate code</description> |
| 19 | + <url>https://github.com/JavaWebStack/web-utils</url> |
| 20 | + |
| 21 | + <licenses> |
| 22 | + <license> |
| 23 | + <name>The Apache License, Version 2.0</name> |
| 24 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 25 | + </license> |
| 26 | + </licenses> |
| 27 | + |
| 28 | + <developers> |
| 29 | + <developer> |
| 30 | + <name>Jan Bebendorf</name> |
| 31 | + |
| 32 | + <organization>JavaWebStack</organization> |
| 33 | + <organizationUrl>https://javawebstack.org</organizationUrl> |
| 34 | + </developer> |
| 35 | + </developers> |
| 36 | + |
| 37 | + <scm> |
| 38 | + <connection>scm:git:git://github.com/JavaWebStack/web-utils.git</connection> |
| 39 | + <developerConnection>scm:git:ssh://github.com:JavaWebStack/web-utils.git</developerConnection> |
| 40 | + <url>https://github.com/JavaWebStack/web-utils/tree/master</url> |
| 41 | + </scm> |
17 | 42 |
|
18 | 43 | <dependencies>
|
19 | 44 | <dependency>
|
20 | 45 | <groupId>org.javawebstack</groupId>
|
21 |
| - <artifactId>ORM</artifactId> |
22 |
| - <version>1.0-SNAPSHOT</version> |
| 46 | + <artifactId>orm</artifactId> |
| 47 | + <version>1.0.1</version> |
23 | 48 | </dependency>
|
24 | 49 | <dependency>
|
25 | 50 | <groupId>org.javawebstack</groupId>
|
26 |
| - <artifactId>HTTP-Server</artifactId> |
27 |
| - <version>1.0-SNAPSHOT</version> |
| 51 | + <artifactId>http-server</artifactId> |
| 52 | + <version>1.0.1</version> |
28 | 53 | </dependency>
|
29 | 54 | <dependency>
|
30 | 55 | <groupId>com.github.javafaker</groupId>
|
31 | 56 | <artifactId>javafaker</artifactId>
|
32 | 57 | <version>1.0.2</version>
|
33 | 58 | </dependency>
|
34 |
| - <dependency> |
35 |
| - <groupId>org.javawebstack</groupId> |
36 |
| - <artifactId>AbstractData</artifactId> |
37 |
| - <version>1.0-SNAPSHOT</version> |
38 |
| - </dependency> |
39 | 59 | <dependency>
|
40 | 60 | <groupId>org.junit.jupiter</groupId>
|
41 | 61 | <artifactId>junit-jupiter-engine</artifactId>
|
42 |
| - <version>5.4.2</version> |
| 62 | + <version>5.8.1</version> |
43 | 63 | <scope>test</scope>
|
44 | 64 | </dependency>
|
45 | 65 | </dependencies>
|
46 | 66 |
|
47 | 67 | <build>
|
48 | 68 | <plugins>
|
49 |
| - <plugin> |
50 |
| - <groupId>org.apache.maven.plugins</groupId> |
51 |
| - <artifactId>maven-compiler-plugin</artifactId> |
52 |
| - <configuration> |
53 |
| - <source>8</source> |
54 |
| - <target>8</target> |
55 |
| - </configuration> |
56 |
| - </plugin> |
57 | 69 | <plugin>
|
58 | 70 | <groupId>org.apache.maven.plugins</groupId>
|
59 | 71 | <artifactId>maven-surefire-plugin</artifactId>
|
|
72 | 84 | </execution>
|
73 | 85 | </executions>
|
74 | 86 | </plugin>
|
| 87 | + <plugin> |
| 88 | + <groupId>org.apache.maven.plugins</groupId> |
| 89 | + <artifactId>maven-source-plugin</artifactId> |
| 90 | + <version>2.2.1</version> |
| 91 | + <executions> |
| 92 | + <execution> |
| 93 | + <id>attach-sources</id> |
| 94 | + <goals> |
| 95 | + <goal>jar-no-fork</goal> |
| 96 | + </goals> |
| 97 | + </execution> |
| 98 | + </executions> |
| 99 | + </plugin> |
| 100 | + <plugin> |
| 101 | + <groupId>org.apache.maven.plugins</groupId> |
| 102 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 103 | + <version>2.9.1</version> |
| 104 | + <executions> |
| 105 | + <execution> |
| 106 | + <id>attach-javadocs</id> |
| 107 | + <goals> |
| 108 | + <goal>jar</goal> |
| 109 | + </goals> |
| 110 | + </execution> |
| 111 | + </executions> |
| 112 | + </plugin> |
| 113 | + <plugin> |
| 114 | + <groupId>org.apache.maven.plugins</groupId> |
| 115 | + <artifactId>maven-gpg-plugin</artifactId> |
| 116 | + <version>3.0.1</version> |
| 117 | + <executions> |
| 118 | + <execution> |
| 119 | + <id>sign-artifacts</id> |
| 120 | + <phase>verify</phase> |
| 121 | + <goals> |
| 122 | + <goal>sign</goal> |
| 123 | + </goals> |
| 124 | + <configuration> |
| 125 | + <keyname>A313520526A8DFE1C2A30399C35A3D43C557B112</keyname> |
| 126 | + <passphraseServerId>gpg</passphraseServerId> |
| 127 | + <gpgArguments> |
| 128 | + <arg>--no-tty</arg> |
| 129 | + <arg>--batch</arg> |
| 130 | + <arg>--yes</arg> |
| 131 | + </gpgArguments> |
| 132 | + </configuration> |
| 133 | + </execution> |
| 134 | + </executions> |
| 135 | + </plugin> |
75 | 136 | </plugins>
|
76 | 137 | </build>
|
77 | 138 |
|
78 | 139 | <distributionManagement>
|
79 | 140 | <snapshotRepository>
|
80 |
| - <id>javawebstack-snapshots</id> |
81 |
| - <url>https://nexus.lumaserv.cloud/repository/javawebstack-snapshots</url> |
| 141 | + <id>ossrh</id> |
| 142 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
82 | 143 | </snapshotRepository>
|
83 | 144 | <repository>
|
84 |
| - <id>javawebstack-releases</id> |
85 |
| - <url>https://nexus.lumaserv.cloud/repository/javawebstack-releases</url> |
| 145 | + <id>ossrh</id> |
| 146 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
86 | 147 | </repository>
|
87 | 148 | </distributionManagement>
|
88 | 149 |
|
|
0 commit comments