|
1 | 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/maven-v4_0_0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - <groupId>com.auth0</groupId> |
5 | | - <artifactId>java-jwt-signer</artifactId> |
6 | | - <version>1.0</version> |
7 | | - <packaging>jar</packaging> |
8 | | - <name>Java JWT</name> |
9 | | - |
10 | | - <parent> |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.auth0</groupId> |
| 5 | + <artifactId>java-jwt-signer</artifactId> |
| 6 | + <version>1.0</version> |
| 7 | + <packaging>jar</packaging> |
| 8 | + <name>Java JWT</name> |
| 9 | + |
| 10 | + <parent> |
11 | 11 | <groupId>org.sonatype.oss</groupId> |
12 | 12 | <artifactId>oss-parent</artifactId> |
13 | 13 | <version>9</version> |
|
24 | 24 | <description>Java implementation of JSON Web Token developed against draft-ietf-oauth-json-web-token-08.</description> |
25 | 25 | <url>http://www.jwt.io</url> |
26 | 26 |
|
27 | | - <dependencies> |
| 27 | + <dependencies> |
28 | 28 | <!-- For JWT parsing--> |
29 | 29 | <dependency> |
30 | 30 | <groupId>com.fasterxml.jackson.core</groupId> |
|
45 | 45 | </dependency> |
46 | 46 | </dependencies> |
47 | 47 |
|
48 | | - <build> |
49 | | - <plugins> |
50 | | - <plugin> |
51 | | - <groupId>org.apache.maven.plugins</groupId> |
52 | | - <artifactId>maven-compiler-plugin</artifactId> |
53 | | - <configuration> |
54 | | - <source>1.7</source> |
55 | | - <target>1.7</target> |
56 | | - </configuration> |
57 | | - </plugin> |
58 | | - <plugin> |
59 | | - <groupId>org.apache.maven.plugins</groupId> |
60 | | - <artifactId>maven-eclipse-plugin</artifactId> |
61 | | - </plugin> |
62 | | - <plugin> |
63 | | - <groupId>org.codehaus.mojo</groupId> |
64 | | - <artifactId>properties-maven-plugin</artifactId> |
65 | | - <version>1.0-alpha-2</version> |
66 | | - <executions> |
67 | | - <execution> |
68 | | - <phase>initialize</phase> |
69 | | - <goals> |
70 | | - <goal>read-project-properties</goal> |
71 | | - </goals> |
72 | | - <configuration> |
73 | | - <quiet>true</quiet> |
74 | | - <files> |
75 | | - <file>${basedir}/build.properties</file> |
76 | | - <file>${basedir}/build.local.properties</file> |
77 | | - </files> |
78 | | - </configuration> |
79 | | - </execution> |
80 | | - </executions> |
81 | | - </plugin> |
82 | | - </plugins> |
| 48 | + <build> |
| 49 | + <plugins> |
| 50 | + <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
| 52 | + <artifactId>maven-compiler-plugin</artifactId> |
| 53 | + <version>3.1</version> |
| 54 | + <configuration> |
| 55 | + <source>1.6</source> |
| 56 | + <target>1.6</target> |
| 57 | + </configuration> |
| 58 | + </plugin> |
| 59 | + </plugins> |
83 | 60 |
|
84 | | - <sourceDirectory>src/main/java</sourceDirectory> |
| 61 | + <sourceDirectory>src/main/java</sourceDirectory> |
85 | 62 |
|
86 | | - <resources> |
87 | | - <resource> |
88 | | - <directory>src/main/resources</directory> |
89 | | - <filtering>true</filtering> |
90 | | - <includes> |
91 | | - <include>**/*.xml</include> |
92 | | - <include>**/*.properties</include> |
93 | | - </includes> |
94 | | - </resource> |
95 | | - </resources> |
96 | | - |
97 | | - <pluginManagement> |
98 | | - <plugins> |
99 | | - <!--This plugin's configuration is used to store Eclipse m2e settings |
100 | | - only. It has no influence on the Maven build itself. --> |
101 | | - <plugin> |
102 | | - <groupId>org.eclipse.m2e</groupId> |
103 | | - <artifactId>lifecycle-mapping</artifactId> |
104 | | - <version>1.0.0</version> |
105 | | - <configuration> |
106 | | - <lifecycleMappingMetadata> |
107 | | - <pluginExecutions> |
108 | | - <pluginExecution> |
109 | | - <pluginExecutionFilter> |
110 | | - <groupId> |
111 | | - org.codehaus.mojo |
112 | | - </groupId> |
113 | | - <artifactId> |
114 | | - properties-maven-plugin |
115 | | - </artifactId> |
116 | | - <versionRange> |
117 | | - [1.0-alpha-2,) |
118 | | - </versionRange> |
119 | | - <goals> |
120 | | - <goal> |
121 | | - read-project-properties |
122 | | - </goal> |
123 | | - </goals> |
124 | | - </pluginExecutionFilter> |
125 | | - <action> |
126 | | - <execute> |
127 | | - <runOnIncremental>false</runOnIncremental> |
128 | | - </execute> |
129 | | - </action> |
130 | | - </pluginExecution> |
131 | | - </pluginExecutions> |
132 | | - </lifecycleMappingMetadata> |
133 | | - </configuration> |
134 | | - </plugin> |
135 | | - </plugins> |
136 | | - </pluginManagement> |
137 | | - </build> |
| 63 | + <resources> |
| 64 | + <resource> |
| 65 | + <directory>src/main/resources</directory> |
| 66 | + <filtering>true</filtering> |
| 67 | + <includes> |
| 68 | + <include>**/*.xml</include> |
| 69 | + <include>**/*.properties</include> |
| 70 | + </includes> |
| 71 | + </resource> |
| 72 | + </resources> |
| 73 | + </build> |
138 | 74 | </project> |
0 commit comments