File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 >
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 >
You can’t perform that action at this time.
0 commit comments