Skip to content
This repository was archived by the owner on Jan 5, 2019. It is now read-only.

Commit a9c4852

Browse files
committed
Further update pom
1 parent 322f370 commit a9c4852

1 file changed

Lines changed: 44 additions & 10 deletions

File tree

pom.xml

Lines changed: 44 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,31 @@
1616
<licenses>
1717
<license>
1818
<name>MIT License</name>
19-
<url>https://mit-license.org/license.txt</url>
20-
<distribution>repo</distribution>
19+
<url>https://opensource.org/licenses/MIT</url>
2120
</license>
2221
</licenses>
2322

2423
<scm>
2524
<url>https://github.com/LucaScorpion/JavaRant</url>
2625
</scm>
2726

27+
<developers>
28+
<developer>
29+
<name>Luca Scalzotto</name>
30+
<email>luca@scorpiac.com</email>
31+
<organization>Scorpiac</organization>
32+
<organizationUrl>http://scorpiac.com</organizationUrl>
33+
</developer>
34+
</developers>
35+
36+
<dependencies>
37+
<dependency>
38+
<groupId>com.google.code.gson</groupId>
39+
<artifactId>gson</artifactId>
40+
<version>2.7</version>
41+
</dependency>
42+
</dependencies>
43+
2844
<build>
2945
<plugins>
3046
<plugin>
@@ -35,14 +51,32 @@
3551
<target>1.8</target>
3652
</configuration>
3753
</plugin>
54+
<plugin>
55+
<groupId>org.apache.maven.plugins</groupId>
56+
<artifactId>maven-source-plugin</artifactId>
57+
<version>3.0.1</version>
58+
<executions>
59+
<execution>
60+
<id>attach-sources</id>
61+
<goals>
62+
<goal>jar-no-fork</goal>
63+
</goals>
64+
</execution>
65+
</executions>
66+
</plugin>
67+
<plugin>
68+
<groupId>org.apache.maven.plugins</groupId>
69+
<artifactId>maven-javadoc-plugin</artifactId>
70+
<version>2.9.1</version>
71+
<executions>
72+
<execution>
73+
<id>attach-javadocs</id>
74+
<goals>
75+
<goal>jar</goal>
76+
</goals>
77+
</execution>
78+
</executions>
79+
</plugin>
3880
</plugins>
3981
</build>
40-
41-
<dependencies>
42-
<dependency>
43-
<groupId>com.google.code.gson</groupId>
44-
<artifactId>gson</artifactId>
45-
<version>2.7</version>
46-
</dependency>
47-
</dependencies>
4882
</project>

0 commit comments

Comments
 (0)