|
49 | 49 |
|
50 | 50 | <profiles> |
51 | 51 | <profile> |
52 | | - <id>gpg-signing</id> |
| 52 | + <id>release</id> |
53 | 53 | <build> |
54 | 54 | <plugins> |
55 | 55 | <plugin> |
|
70 | 70 | </execution> |
71 | 71 | </executions> |
72 | 72 | </plugin> |
| 73 | + <plugin> |
| 74 | + <groupId>org.apache.maven.plugins</groupId> |
| 75 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 76 | + <version>2.9</version> |
| 77 | + <configuration> |
| 78 | + <quiet>true</quiet> |
| 79 | + <source>8</source> |
| 80 | + <javadocExecutable>${env.JAVA_HOME}/bin/javadoc</javadocExecutable> |
| 81 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 82 | + </configuration> |
| 83 | + <executions> |
| 84 | + <execution> |
| 85 | + <id>attach-javadocs</id> |
| 86 | + <configuration> |
| 87 | + <additionalparam>${javadoc.opts}</additionalparam> |
| 88 | + </configuration> |
| 89 | + <goals> |
| 90 | + <goal>jar</goal> |
| 91 | + </goals> |
| 92 | + </execution> |
| 93 | + </executions> |
| 94 | + </plugin> |
| 95 | + <plugin> |
| 96 | + <groupId>org.apache.maven.plugins</groupId> |
| 97 | + <artifactId>maven-source-plugin</artifactId> |
| 98 | + <version>3.2.1</version> |
| 99 | + <executions> |
| 100 | + <execution> |
| 101 | + <id>attach-sources</id> |
| 102 | + <phase>verify</phase> |
| 103 | + <goals> |
| 104 | + <goal>jar-no-fork</goal> |
| 105 | + </goals> |
| 106 | + </execution> |
| 107 | + </executions> |
| 108 | + </plugin> |
73 | 109 | </plugins> |
74 | 110 | </build> |
75 | 111 | </profile> |
|
89 | 125 | <dependency> |
90 | 126 | <groupId>org.apache.jena</groupId> |
91 | 127 | <artifactId>jena-core</artifactId> |
92 | | - <version>4.8.0</version> |
| 128 | + <version>4.10.0</version> |
93 | 129 | </dependency> |
94 | 130 | <dependency> |
95 | 131 | <groupId>org.apache.jena</groupId> |
96 | 132 | <artifactId>jena-arq</artifactId> |
97 | | - <version>4.8.0</version> |
| 133 | + <version>4.10.0</version> |
98 | 134 | </dependency> |
99 | 135 | <dependency> |
100 | 136 | <groupId>org.apache.jena</groupId> |
101 | 137 | <artifactId>jena-base</artifactId> |
102 | | - <version>4.8.0</version> |
| 138 | + <version>4.10.0</version> |
103 | 139 | </dependency> |
104 | 140 | </dependencies> |
105 | 141 | <build> |
|
143 | 179 | </testResource> |
144 | 180 | </testResources> |
145 | 181 | <plugins> |
| 182 | + <plugin> |
| 183 | + <groupId>org.apache.maven.plugins</groupId> |
| 184 | + <artifactId>maven-release-plugin</artifactId> |
| 185 | + <version>3.0.1</version> |
| 186 | + <configuration> |
| 187 | + <tagNameFormat>v@{project.version}</tagNameFormat> |
| 188 | + <releaseProfiles>release</releaseProfiles> |
| 189 | + <goals>deploy</goals> |
| 190 | + </configuration> |
| 191 | + </plugin> |
146 | 192 | <plugin> |
147 | 193 | <groupId>org.owasp</groupId> |
148 | 194 | <artifactId>dependency-check-maven</artifactId> |
149 | 195 | <version>${dependency-check-maven.version}</version> |
| 196 | + <configuration> |
| 197 | + <suppressionFiles>dependency-check-supress.xml</suppressionFiles> |
| 198 | + </configuration> |
150 | 199 | </plugin> |
151 | 200 | <plugin> |
152 | 201 | <groupId>org.apache.maven.plugins</groupId> |
153 | 202 | <artifactId>maven-compiler-plugin</artifactId> |
154 | | - <version>3.6.1</version> |
| 203 | + <version>3.11.0</version> |
155 | 204 | <configuration> |
156 | 205 | <release>11</release> |
157 | 206 | <encoding>${project.build.sourceEncoding}</encoding> |
|
160 | 209 | <optimize>true</optimize> |
161 | 210 | </configuration> |
162 | 211 | </plugin> |
163 | | - <plugin> |
164 | | - <groupId>org.apache.maven.plugins</groupId> |
165 | | - <artifactId>maven-javadoc-plugin</artifactId> |
166 | | - <version>2.9</version> |
167 | | - <configuration> |
168 | | - <quiet>true</quiet> |
169 | | - <source>8</source> |
170 | | - <javadocExecutable>${env.JAVA_HOME}/bin/javadoc</javadocExecutable> |
171 | | - <additionalparam>-Xdoclint:none</additionalparam> |
172 | | - </configuration> |
173 | | - <executions> |
174 | | - <execution> |
175 | | - <id>attach-javadocs</id> |
176 | | - <configuration> |
177 | | - <additionalparam>${javadoc.opts}</additionalparam> |
178 | | - </configuration> |
179 | | - <goals> |
180 | | - <goal>jar</goal> |
181 | | - </goals> |
182 | | - </execution> |
183 | | - </executions> |
184 | | - </plugin> |
185 | | - <plugin> |
186 | | - <groupId>org.apache.maven.plugins</groupId> |
187 | | - <artifactId>maven-source-plugin</artifactId> |
188 | | - <version>3.2.1</version> |
189 | | - <executions> |
190 | | - <execution> |
191 | | - <id>attach-sources</id> |
192 | | - <phase>verify</phase> |
193 | | - <goals> |
194 | | - <goal>jar-no-fork</goal> |
195 | | - </goals> |
196 | | - </execution> |
197 | | - </executions> |
198 | | - </plugin> |
199 | 212 | <plugin> |
200 | 213 | <groupId>org.spdx</groupId> |
201 | 214 | <artifactId>spdx-maven-plugin</artifactId> |
|
253 | 266 | <url>https://github.com/spdx/spdx-java-rdf-store</url> |
254 | 267 | <connection>scm:git:git://github.com/spdx/spdx-java-rdf-store</connection> |
255 | 268 | < developerConnection>scm:git: [email protected]:/spdx/spdx-java-rdf-store</ developerConnection> |
| 269 | + <tag>master</tag> |
256 | 270 | </scm> |
257 | 271 | <issueManagement> |
258 | 272 | <system>Github</system> |
|
0 commit comments