Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 68e14f3

Browse files
committed
Update POM to fix secure dependencies.
1 parent 1ed4d01 commit 68e14f3

File tree

2 files changed

+4
-73
lines changed

2 files changed

+4
-73
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ jobs:
1212
uses: actions/setup-java@v1
1313
with:
1414
java-version: 11
15-
- name: Build with Ant
16-
run: ant -noinput -buildfile build.xml
15+
- name: Build with Maven
16+
run: mvn --batch-mode --update-snapshots verify

pom.xml

+2-71
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<project>
32
<modelVersion>4.0.0</modelVersion>
43

54
<groupId>net.nodebox</groupId>
@@ -15,7 +14,7 @@
1514
<licenses>
1615
<license>
1716
<name>GPL license, Version 2.0</name>
18-
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html</url>
17+
<url>https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html</url>
1918
</license>
2019
</licenses>
2120

@@ -129,74 +128,6 @@
129128
</repository>
130129
</distributionManagement>
131130

132-
<build>
133-
<plugins>
134-
<plugin>
135-
<groupId>org.apache.maven.plugins</groupId>
136-
<artifactId>maven-compiler-plugin</artifactId>
137-
<version>3.5.1</version>
138-
<configuration>
139-
<source>9</source>
140-
<target>9</target>
141-
</configuration>
142-
</plugin>
143-
<plugin>
144-
<groupId>org.apache.maven.plugins</groupId>
145-
<artifactId>maven-source-plugin</artifactId>
146-
<version>3.0.0</version>
147-
<executions>
148-
<execution>
149-
<id>attach-sources</id>
150-
<goals>
151-
<goal>jar</goal>
152-
</goals>
153-
</execution>
154-
</executions>
155-
</plugin>
156-
<plugin>
157-
<groupId>org.apache.maven.plugins</groupId>
158-
<artifactId>maven-javadoc-plugin</artifactId>
159-
<version>2.10.3</version>
160-
<executions>
161-
<execution>
162-
<id>attach-javadocs</id>
163-
<goals>
164-
<goal>jar</goal>
165-
</goals>
166-
</execution>
167-
</executions>
168-
<configuration>
169-
<additionalparam>-Xdoclint:none</additionalparam>
170-
</configuration>
171-
</plugin>
172-
<plugin>
173-
<groupId>org.apache.maven.plugins</groupId>
174-
<artifactId>maven-gpg-plugin</artifactId>
175-
<version>1.6</version>
176-
<executions>
177-
<execution>
178-
<id>sign-artifacts</id>
179-
<phase>verify</phase>
180-
<goals>
181-
<goal>sign</goal>
182-
</goals>
183-
</execution>
184-
</executions>
185-
</plugin>
186-
<plugin>
187-
<groupId>org.sonatype.plugins</groupId>
188-
<artifactId>nexus-staging-maven-plugin</artifactId>
189-
<version>1.6.7</version>
190-
<extensions>true</extensions>
191-
<configuration>
192-
<serverId>ossrh</serverId>
193-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
194-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
195-
</configuration>
196-
</plugin>
197-
</plugins>
198-
</build>
199-
200131
<properties>
201132
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
202133
</properties>

0 commit comments

Comments
 (0)