Skip to content

Commit ecb7ffe

Browse files
committed
Fix #1
1 parent f4723ba commit ecb7ffe

File tree

1 file changed

+105
-46
lines changed

1 file changed

+105
-46
lines changed

pom.xml

Lines changed: 105 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,106 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2-
<modelVersion>4.0.0</modelVersion>
3-
<groupId>org.sobotics</groupId>
4-
<artifactId>redunda-lib</artifactId>
5-
<version>0.2.0-SNAPSHOT</version>
6-
<name>Redunda Library</name>
7-
<description>Communicates with SOBotic's Redunda</description>
8-
9-
<distributionManagement>
10-
<snapshotRepository>
11-
<id>ossrh</id>
12-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
13-
</snapshotRepository>
14-
<repository>
15-
<id>ossrh</id>
16-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
17-
</repository>
18-
</distributionManagement>
19-
20-
<build>
21-
<plugins>
22-
<plugin>
23-
<artifactId>maven-compiler-plugin</artifactId>
24-
<version>3.5.1</version>
25-
<configuration>
26-
<source>1.8</source>
27-
<target>1.8</target>
28-
</configuration>
29-
</plugin>
30-
</plugins>
31-
</build>
32-
33-
<licenses>
34-
<license>
35-
<name>MIT License</name>
36-
<url>https://raw.githubusercontent.com/SOBotics/Redunda-lib-java/master/LICENSE</url>
37-
<distribution>repo</distribution>
38-
</license>
39-
</licenses>
40-
<dependencies>
41-
<dependency>
42-
<groupId>com.google.code.gson</groupId>
43-
<artifactId>gson</artifactId>
44-
<version>2.8.0</version>
45-
</dependency>
46-
</dependencies>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>org.sobotics</groupId>
5+
<artifactId>redunda-lib</artifactId>
6+
<version>0.2.0</version>
7+
<name>Redunda Library</name>
8+
<description>Communicates with SOBotic's Redunda</description>
9+
10+
<distributionManagement>
11+
<snapshotRepository>
12+
<id>ossrh</id>
13+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
14+
</snapshotRepository>
15+
<repository>
16+
<id>ossrh</id>
17+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
18+
</repository>
19+
</distributionManagement>
20+
21+
<build>
22+
<plugins>
23+
<plugin>
24+
<artifactId>maven-compiler-plugin</artifactId>
25+
<version>3.5.1</version>
26+
<configuration>
27+
<source>1.8</source>
28+
<target>1.8</target>
29+
</configuration>
30+
</plugin>
31+
<plugin>
32+
<groupId>org.apache.maven.plugins</groupId>
33+
<artifactId>maven-source-plugin</artifactId>
34+
<version>2.2.1</version>
35+
<executions>
36+
<execution>
37+
<id>attach-sources</id>
38+
<goals>
39+
<goal>jar-no-fork</goal>
40+
</goals>
41+
</execution>
42+
</executions>
43+
</plugin>
44+
<plugin>
45+
<groupId>org.apache.maven.plugins</groupId>
46+
<artifactId>maven-javadoc-plugin</artifactId>
47+
<version>2.9.1</version>
48+
<executions>
49+
<execution>
50+
<id>attach-javadocs</id>
51+
<goals>
52+
<goal>jar</goal>
53+
</goals>
54+
</execution>
55+
</executions>
56+
</plugin>
57+
<plugin>
58+
<groupId>org.apache.maven.plugins</groupId>
59+
<artifactId>maven-gpg-plugin</artifactId>
60+
<version>1.5</version>
61+
<executions>
62+
<execution>
63+
<id>sign-artifacts</id>
64+
<phase>verify</phase>
65+
<goals>
66+
<goal>sign</goal>
67+
</goals>
68+
</execution>
69+
</executions>
70+
</plugin>
71+
</plugins>
72+
</build>
73+
74+
<licenses>
75+
<license>
76+
<name>MIT License</name>
77+
<url>https://raw.githubusercontent.com/SOBotics/Redunda-lib-java/master/LICENSE</url>
78+
<distribution>repo</distribution>
79+
</license>
80+
</licenses>
81+
<developers>
82+
<developer>
83+
<name>FelixSFD</name>
84+
<email>felixsfd@sobotics.org</email>
85+
<organization>SOBotics</organization>
86+
<organizationUrl>http://sobotics.org</organizationUrl>
87+
</developer>
88+
</developers>
89+
<dependencies>
90+
<dependency>
91+
<groupId>com.google.code.gson</groupId>
92+
<artifactId>gson</artifactId>
93+
<version>2.8.0</version>
94+
</dependency>
95+
</dependencies>
96+
<scm>
97+
<url>https://redunda.sobotics.org</url>
98+
<connection>scm:git:git://github.com/SOBotics/redunda-lib-java.git</connection>
99+
<developerConnection>scm:git:git://github.com/SOBotics/redunda-lib-java.git</developerConnection>
100+
</scm>
101+
<url>https://redunda.sobotics.org</url>
102+
<organization>
103+
<name>SOBotics</name>
104+
<url>http://sobotics.org</url>
105+
</organization>
47106
</project>

0 commit comments

Comments
 (0)