|
1 | 1 | <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"> |
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | | - |
4 | | - <groupId>org.spdx</groupId> |
5 | | - <artifactId>java-spdx-library</artifactId> |
6 | | - <version>1.1.13-SNAPSHOT</version> |
7 | | - <packaging>jar</packaging> |
8 | | - |
| 3 | + <groupId>org.spdx</groupId> |
| 4 | + <artifactId>java-spdx-library</artifactId> |
| 5 | + <version>2.0.0-SNAPSHOT</version> |
| 6 | + <packaging>jar</packaging> |
9 | 7 | <name>java-spdx-library</name> |
10 | 8 | <url>https://github.com/spdx/Spdx-Java-Library</url> |
11 | 9 | <licenses> |
|
69 | 67 | </dependency> |
70 | 68 | </dependencies> |
71 | 69 | </profile> |
72 | | - <profile> |
73 | | - <id>doclint-java8-disable</id> |
74 | | - <activation> |
75 | | - <jdk>[1.8,)</jdk> |
76 | | - </activation> |
77 | | - <properties> |
78 | | - <javadoc.opts>-Xdoclint:none</javadoc.opts> |
79 | | - </properties> |
80 | | - </profile> |
81 | 70 | <profile> |
82 | 71 | <id>release</id> |
83 | 72 | <build> |
|
118 | 107 | </build> |
119 | 108 | </profile> |
120 | 109 | </profiles> |
121 | | - <dependencies> |
122 | | - <dependency> |
123 | | - <groupId>junit</groupId> |
124 | | - <artifactId>junit</artifactId> |
125 | | - <version>4.13.1</version> |
126 | | - <scope>test</scope> |
127 | | - </dependency> |
128 | | - <dependency> |
129 | | - <groupId>org.slf4j</groupId> |
130 | | - <artifactId>slf4j-api</artifactId> |
131 | | - <version>2.0.7</version> |
132 | | - </dependency> |
133 | | - <dependency> |
134 | | - <groupId>org.apache.commons</groupId> |
135 | | - <artifactId>commons-lang3</artifactId> |
136 | | - <version>3.5</version> |
137 | | - </dependency> |
138 | | - <dependency> |
139 | | - <groupId>org.jsoup</groupId> |
140 | | - <artifactId>jsoup</artifactId> |
141 | | - <version>1.15.3</version> |
142 | | - </dependency> |
143 | | - <dependency> |
144 | | - <groupId>com.google.code.gson</groupId> |
145 | | - <artifactId>gson</artifactId> |
146 | | - <version>2.8.9</version> |
147 | | - </dependency> |
148 | | - <dependency> |
149 | | - <groupId>net.jodah</groupId> |
150 | | - <artifactId>concurrentunit</artifactId> |
151 | | - <version>0.4.6</version> |
152 | | - <scope>test</scope> |
153 | | - </dependency> |
154 | | - <dependency> |
155 | | - <groupId>com.google.code.findbugs</groupId> |
156 | | - <artifactId>jsr305</artifactId> |
157 | | - <version>3.0.2</version> |
158 | | - </dependency> |
159 | | - </dependencies> |
160 | | - |
161 | | - <build> |
162 | | - <resources> |
| 110 | + <dependencies> |
| 111 | + <dependency> |
| 112 | + <groupId>junit</groupId> |
| 113 | + <artifactId>junit</artifactId> |
| 114 | + <version>4.13.1</version> |
| 115 | + <scope>test</scope> |
| 116 | + </dependency> |
| 117 | + <dependency> |
| 118 | + <groupId>org.slf4j</groupId> |
| 119 | + <artifactId>slf4j-api</artifactId> |
| 120 | + <version>2.0.7</version> |
| 121 | + </dependency> |
| 122 | + <dependency> |
| 123 | + <groupId>org.apache.commons</groupId> |
| 124 | + <artifactId>commons-lang3</artifactId> |
| 125 | + <version>3.5</version> |
| 126 | + </dependency> |
| 127 | + <dependency> |
| 128 | + <groupId>org.jsoup</groupId> |
| 129 | + <artifactId>jsoup</artifactId> |
| 130 | + <version>1.15.3</version> |
| 131 | + </dependency> |
| 132 | + <dependency> |
| 133 | + <groupId>com.google.code.gson</groupId> |
| 134 | + <artifactId>gson</artifactId> |
| 135 | + <version>2.8.9</version> |
| 136 | + </dependency> |
| 137 | + <dependency> |
| 138 | + <groupId>net.jodah</groupId> |
| 139 | + <artifactId>concurrentunit</artifactId> |
| 140 | + <version>0.4.6</version> |
| 141 | + <scope>test</scope> |
| 142 | + </dependency> |
| 143 | + <dependency> |
| 144 | + <groupId>com.google.code.findbugs</groupId> |
| 145 | + <artifactId>jsr305</artifactId> |
| 146 | + <version>3.0.2</version> |
| 147 | + </dependency> |
| 148 | + <dependency> |
| 149 | + <groupId>org.spdx</groupId> |
| 150 | + <artifactId>spdx-java-model-2_X</artifactId> |
| 151 | + <version>0.1.0-Alpha</version> |
| 152 | + </dependency> |
| 153 | + <dependency> |
| 154 | + <groupId>org.spdx</groupId> |
| 155 | + <artifactId>spdx-java-core</artifactId> |
| 156 | + <version>0.1.0-Alpha</version> |
| 157 | + </dependency> |
| 158 | + <dependency> |
| 159 | + <groupId>org.spdx</groupId> |
| 160 | + <artifactId>spdx-java-model-3_0</artifactId> |
| 161 | + <version>0.1.0-Alpha</version> |
| 162 | + </dependency> |
| 163 | + </dependencies> |
| 164 | + |
| 165 | + <build> |
| 166 | + <resources> |
163 | 167 | <resource> |
164 | 168 | <targetPath>resources</targetPath> |
165 | 169 | <filtering>false</filtering> |
|
183 | 187 | </excludes> |
184 | 188 | </resource> |
185 | 189 | </resources> |
| 190 | + <sourceDirectory>src/main/java</sourceDirectory> |
186 | 191 | <testResources> |
187 | 192 | <testResource> |
188 | 193 | <directory>src/test</directory> |
|
223 | 228 | <configuration> |
224 | 229 | <quiet>true</quiet> |
225 | 230 | <notimestamp>true</notimestamp> |
226 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 231 | + <doclint>all,-missing</doclint> |
227 | 232 | </configuration> |
228 | 233 | <executions> |
229 | 234 | <execution> |
|
0 commit comments