Skip to content

Commit b7e79dc

Browse files
committed
Making changes to pom.xml for release.
1 parent 1d2ac94 commit b7e79dc

1 file changed

Lines changed: 51 additions & 0 deletions

File tree

pom.xml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,48 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7+
<parent>
8+
<groupId>org.sonatype.oss</groupId>
9+
<artifactId>oss-parent</artifactId>
10+
<version>9</version>
11+
</parent>
12+
713
<groupId>com.auth0</groupId>
814
<artifactId>java-jwt</artifactId>
915
<version>0.1-SNAPSHOT</version>
1016

17+
<name>Java JWT</name>
18+
<description>Java implementation of JSON Web Token developed against draft-ietf-oauth-json-web-token-08.</description>
19+
<url>http://www.jwt.io</url>
20+
21+
<properties>
22+
<java.version>1.6</java.version>
23+
</properties>
24+
25+
<licenses>
26+
<license>
27+
<name>The MIT License</name>
28+
<url>http://www.opensource.org/licenses/mit-license.php</url>
29+
<distribution>repo</distribution>
30+
</license>
31+
</licenses>
32+
33+
<developers>
34+
<developer>
35+
<name>Alberto Pose</name>
36+
<id>pose</id>
37+
<roles>
38+
<role>Developer</role>
39+
</roles>
40+
</developer>
41+
</developers>
42+
43+
<scm>
44+
<url>https://github.com/auth0/java-jwt</url>
45+
<developerConnection>scm:git:git@github.com:auth0/java-jwt.git</developerConnection>
46+
<connection>scm:git:git@github.com:auth0/java-jwt.git</connection>
47+
</scm>
48+
1149
<dependencies>
1250
<!-- For JWT parsing-->
1351
<dependency>
@@ -29,5 +67,18 @@
2967
</dependency>
3068
</dependencies>
3169

70+
<build>
71+
<plugins>
72+
<plugin>
73+
<artifactId>maven-compiler-plugin</artifactId>
74+
<version>3.1</version>
75+
<configuration>
76+
<source>${java.version}</source>
77+
<target>${java.version}</target>
78+
<encoding>UTF-8</encoding>
79+
</configuration>
80+
</plugin>
81+
</plugins>
82+
</build>
3283

3384
</project>

0 commit comments

Comments
 (0)