|
7 | 7 | <parent> |
8 | 8 | <groupId>org.scitokens</groupId> |
9 | 9 | <artifactId>scitokens-java</artifactId> |
10 | | - <version>1.0-SNAPSHOT</version> |
| 10 | + <version>1.0</version> |
11 | 11 | </parent> |
12 | 12 |
|
13 | 13 | <properties> |
|
26 | 26 | <type>war</type> |
27 | 27 | <scope>runtime</scope> |
28 | 28 | </dependency>--> |
29 | | -<!-- <dependency> |
30 | | - <groupId>edu.uiuc.ncsa.myproxy</groupId> |
31 | | - <artifactId>oa4mp-server-oauth2</artifactId> |
32 | | - <version>3.5-SNAPSHOT</version> |
33 | | - <type>test-jar</type> |
34 | | - <scope>test</scope> |
35 | | - </dependency>--> |
| 29 | + <!-- <dependency> |
| 30 | + <groupId>edu.uiuc.ncsa.myproxy</groupId> |
| 31 | + <artifactId>oa4mp-server-oauth2</artifactId> |
| 32 | + <version>3.5-SNAPSHOT</version> |
| 33 | + <type>test-jar</type> |
| 34 | + <scope>test</scope> |
| 35 | + </dependency>--> |
36 | 36 | <dependency> |
37 | 37 | <groupId>edu.uiuc.ncsa.myproxy</groupId> |
38 | 38 | <artifactId>oa4mp-server-api</artifactId> |
|
58 | 58 | <artifactId>oa4mp-server-loader-oauth2</artifactId> |
59 | 59 | <version>3.5-SNAPSHOT</version> |
60 | 60 | </dependency> |
61 | | - <!-- <dependency> |
62 | | - <groupId>edu.uiuc.ncsa.security</groupId> |
63 | | - <artifactId>ncsa-security-core</artifactId> |
64 | | - <version>3.5-SNAPSHOT</version> |
65 | | - <type>test-jar</type> |
66 | | - <scope>test</scope> |
67 | | - </dependency>--> |
68 | | - <!-- <dependency> |
69 | | - <groupId>edu.uiuc.ncsa.security.delegation</groupId> |
70 | | - <artifactId>ncsa-security-delegation-common</artifactId> |
71 | | - <version>3.5-SNAPSHOT</version> |
72 | | - <type>test-jar</type> |
73 | | - <scope>test</scope> |
74 | | - </dependency>--> |
| 61 | + <!-- <dependency> |
| 62 | + <groupId>edu.uiuc.ncsa.security</groupId> |
| 63 | + <artifactId>ncsa-security-core</artifactId> |
| 64 | + <version>3.5-SNAPSHOT</version> |
| 65 | + <type>test-jar</type> |
| 66 | + <scope>test</scope> |
| 67 | + </dependency>--> |
| 68 | + <!-- <dependency> |
| 69 | + <groupId>edu.uiuc.ncsa.security.delegation</groupId> |
| 70 | + <artifactId>ncsa-security-delegation-common</artifactId> |
| 71 | + <version>3.5-SNAPSHOT</version> |
| 72 | + <type>test-jar</type> |
| 73 | + <scope>test</scope> |
| 74 | + </dependency>--> |
75 | 75 |
|
76 | | - <!-- <dependency> |
77 | | - <groupId>edu.uiuc.ncsa.myproxy</groupId> |
78 | | - <artifactId>oa4mp-server-test</artifactId> |
79 | | - <version>3.5-SNAPSHOT</version> |
80 | | - <type>test-jar</type> |
81 | | - <scope>test</scope> |
82 | | - </dependency>--> |
| 76 | + <!-- <dependency> |
| 77 | + <groupId>edu.uiuc.ncsa.myproxy</groupId> |
| 78 | + <artifactId>oa4mp-server-test</artifactId> |
| 79 | + <version>3.5-SNAPSHOT</version> |
| 80 | + <type>test-jar</type> |
| 81 | + <scope>test</scope> |
| 82 | + </dependency>--> |
83 | 83 | <dependency> |
84 | 84 | <groupId>edu.uiuc.ncsa.security.delegation</groupId> |
85 | 85 | <artifactId>ncsa-security-oauth-2.0</artifactId> |
|
214 | 214 |
|
215 | 215 | </configuration> |
216 | 216 | </plugin>--> |
| 217 | + <plugin> |
| 218 | + <groupId>org.apache.maven.plugins</groupId> |
| 219 | + <artifactId>maven-source-plugin</artifactId> |
| 220 | + <version>3.0.0</version> |
| 221 | + <executions> |
| 222 | + <execution> |
| 223 | + <id>attach-sources</id> |
| 224 | + <goals> |
| 225 | + <goal>jar</goal> |
| 226 | + </goals> |
| 227 | + </execution> |
| 228 | + </executions> |
| 229 | + </plugin> |
| 230 | + <plugin> |
| 231 | + <groupId>org.apache.maven.plugins</groupId> |
| 232 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 233 | + <version>2.9</version> |
| 234 | + <executions> |
| 235 | + <execution> |
| 236 | + <id>attach-javadocs</id> |
| 237 | + <goals> |
| 238 | + <goal>jar</goal> |
| 239 | + </goals> |
| 240 | + <configuration> |
| 241 | + <!-- Java 8 specific or empty javadoc tags make the build fail --> |
| 242 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 243 | + <aggregate>true</aggregate> |
| 244 | + <use>false</use> |
| 245 | + |
| 246 | + </configuration> |
| 247 | + |
| 248 | + </execution> |
| 249 | + </executions> |
| 250 | + |
| 251 | + </plugin> |
217 | 252 | </plugins> |
218 | 253 | <finalName>scitokens-common</finalName> |
219 | 254 | </build> |
|
0 commit comments