|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | 7 | <groupId>org.javawebstack</groupId> |
8 | | - <artifactId>AbstractData</artifactId> |
9 | | - <version>1.0-SNAPSHOT</version> |
| 8 | + <artifactId>abstract-data</artifactId> |
| 9 | + <version>1.0.0-SNAPSHOT</version> |
| 10 | + |
| 11 | + <name>abstract-data</name> |
| 12 | + <description>A library to abstractly represent structured data and convert it from and to several formats</description> |
| 13 | + <url>https://github.com/JavaWebStack/abstract-data</url> |
| 14 | + |
| 15 | + <licenses> |
| 16 | + <license> |
| 17 | + <name>The Apache License, Version 2.0</name> |
| 18 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 19 | + </license> |
| 20 | + </licenses> |
| 21 | + |
| 22 | + <developers> |
| 23 | + <developer> |
| 24 | + <name>Jan Bebendorf</name> |
| 25 | + <email>jan@bebendorf.eu</email> |
| 26 | + <organization>JavaWebStack</organization> |
| 27 | + <organizationUrl>https://javawebstack.org</organizationUrl> |
| 28 | + </developer> |
| 29 | + </developers> |
| 30 | + |
| 31 | + <scm> |
| 32 | + <connection>scm:git:git://github.com/JavaWebStack/abstract-data.git</connection> |
| 33 | + <developerConnection>scm:git:ssh://github.com:JavaWebStack/abstract-data.git</developerConnection> |
| 34 | + <url>https://github.com/JavaWebStack/abstract-data/tree/master</url> |
| 35 | + </scm> |
| 36 | + |
| 37 | + <properties> |
| 38 | + <maven.compiler.source>8</maven.compiler.source> |
| 39 | + <maven.compiler.target>8</maven.compiler.target> |
| 40 | + </properties> |
10 | 41 |
|
11 | 42 | <dependencies> |
12 | 43 | <dependency> |
13 | 44 | <groupId>com.google.code.gson</groupId> |
14 | 45 | <artifactId>gson</artifactId> |
15 | | - <version>2.8.6</version> |
| 46 | + <version>2.8.9</version> |
16 | 47 | </dependency> |
17 | 48 | <dependency> |
18 | 49 | <groupId>org.yaml</groupId> |
19 | 50 | <artifactId>snakeyaml</artifactId> |
20 | | - <version>1.27</version> |
| 51 | + <version>1.29</version> |
21 | 52 | </dependency> |
22 | 53 | </dependencies> |
23 | 54 |
|
24 | 55 | <build> |
25 | 56 | <plugins> |
26 | | - <plugin> |
27 | | - <groupId>org.apache.maven.plugins</groupId> |
28 | | - <artifactId>maven-compiler-plugin</artifactId> |
29 | | - <configuration> |
30 | | - <source>8</source> |
31 | | - <target>8</target> |
32 | | - </configuration> |
33 | | - </plugin> |
34 | 57 | <plugin> |
35 | 58 | <artifactId>maven-deploy-plugin</artifactId> |
36 | 59 | <version>2.7</version> |
|
44 | 67 | </execution> |
45 | 68 | </executions> |
46 | 69 | </plugin> |
| 70 | + <plugin> |
| 71 | + <groupId>org.apache.maven.plugins</groupId> |
| 72 | + <artifactId>maven-source-plugin</artifactId> |
| 73 | + <version>2.2.1</version> |
| 74 | + <executions> |
| 75 | + <execution> |
| 76 | + <id>attach-sources</id> |
| 77 | + <goals> |
| 78 | + <goal>jar-no-fork</goal> |
| 79 | + </goals> |
| 80 | + </execution> |
| 81 | + </executions> |
| 82 | + </plugin> |
| 83 | + <plugin> |
| 84 | + <groupId>org.apache.maven.plugins</groupId> |
| 85 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 86 | + <version>2.9.1</version> |
| 87 | + <executions> |
| 88 | + <execution> |
| 89 | + <id>attach-javadocs</id> |
| 90 | + <goals> |
| 91 | + <goal>jar</goal> |
| 92 | + </goals> |
| 93 | + </execution> |
| 94 | + </executions> |
| 95 | + </plugin> |
| 96 | + <plugin> |
| 97 | + <groupId>org.apache.maven.plugins</groupId> |
| 98 | + <artifactId>maven-gpg-plugin</artifactId> |
| 99 | + <version>3.0.1</version> |
| 100 | + <executions> |
| 101 | + <execution> |
| 102 | + <id>sign-artifacts</id> |
| 103 | + <phase>verify</phase> |
| 104 | + <goals> |
| 105 | + <goal>sign</goal> |
| 106 | + </goals> |
| 107 | + <configuration> |
| 108 | + <keyname>A313520526A8DFE1C2A30399C35A3D43C557B112</keyname> |
| 109 | + <passphraseServerId>gpg</passphraseServerId> |
| 110 | + </configuration> |
| 111 | + </execution> |
| 112 | + </executions> |
| 113 | + </plugin> |
47 | 114 | </plugins> |
48 | 115 | </build> |
49 | 116 |
|
|
0 commit comments