-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpom.xml
More file actions
79 lines (64 loc) · 2.37 KB
/
pom.xml
File metadata and controls
79 lines (64 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>openssrf.org</groupId>
<artifactId>openssrf-3.1.0</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>lib-openssrf-3.1.0</name>
<description>OpenSSRF entity class library in Java.
OpenSSRF is an open source reference implementation of the
Standard Spectrum Resource Format (SSRF). The specification is
defined in MCEB Pub 8. The latest version of this software implements
Version 3.1.0 as of 2014-09-16 (with corrections).
Visit OpenSSRF.org for more details.
v1.0.0 - release
</description>
<organization>
<name>OpenSSRF.org</name>
<url>http://openssrf.org/</url>
</organization>
<url>http://openssrf.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<netbeans.hint.license>apache20</netbeans.hint.license>
<compilerArgument>-Xlint:unchecked</compilerArgument>
<mavenjavadocplugin.version>2.9.1</mavenjavadocplugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink</artifactId>
<version>2.5.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!--https://stackoverflow.com/questions/22528767/how-to-work-around-the-stricter-java-8-javadoc-when-using-maven-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>${repository.name}</id>
<url>${repository.url}</url>
</repository>
</distributionManagement>
</project>