Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Dr. Martin Goik
GoikLectures
Commits
7b2d5142
Commit
7b2d5142
authored
Jul 27, 2020
by
Dr. Martin Goik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Maven artifact upgrades
parent
675f2fa8
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
47 deletions
+30
-47
Klausuren/Sda1/2019summer/Solve/pom.xml
Klausuren/Sda1/2019summer/Solve/pom.xml
+5
-5
ws/Archetypes/mi-maven-archetype-helloworld/pom.xml
ws/Archetypes/mi-maven-archetype-helloworld/pom.xml
+4
-4
ws/Archetypes/mi-maven-archetype-helloworld/src/main/resources/archetype-resources/pom.xml
...helloworld/src/main/resources/archetype-resources/pom.xml
+2
-25
ws/Archetypes/mi-maven-archetype-quickstart/pom.xml
ws/Archetypes/mi-maven-archetype-quickstart/pom.xml
+4
-4
ws/Archetypes/mi-maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml
...quickstart/src/main/resources/archetype-resources/pom.xml
+5
-5
ws/Artifacts/Unitmarking/pom.xml
ws/Artifacts/Unitmarking/pom.xml
+10
-4
No files found.
Klausuren/Sda1/2019summer/Solve/pom.xml
View file @
7b2d5142
...
...
@@ -34,14 +34,14 @@
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.1
2
</version>
<version>
4.1
3
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-core
</artifactId>
<version>
2.1
2.0
</version>
<version>
2.1
3.3
</version>
</dependency>
<dependency>
...
...
@@ -53,7 +53,7 @@
<dependency>
<groupId>
jaxen
</groupId>
<artifactId>
jaxen
</artifactId>
<version>
1.
1.6
</version>
<version>
1.
2.0
</version>
</dependency>
<dependency>
...
...
@@ -82,7 +82,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
3.
1.1
</version>
<version>
3.
2.0
</version>
<configuration>
<javaApiLinks>
<property>
...
...
@@ -102,7 +102,7 @@
<plugin>
<artifactId>
maven-assembly-plugin
</artifactId>
<version>
3.
2
.0
</version>
<version>
3.
3
.0
</version>
<configuration>
<descriptors>
<descriptor>
src/main/assembly/assembly.xml
</descriptor>
...
...
ws/Archetypes/mi-maven-archetype-helloworld/pom.xml
View file @
7b2d5142
...
...
@@ -33,7 +33,7 @@
<extension>
<groupId>
org.apache.maven.archetype
</groupId>
<artifactId>
archetype-packaging
</artifactId>
<version>
3.
0.1
</version>
<version>
3.
2.0
</version>
</extension>
</extensions>
...
...
@@ -42,7 +42,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-archetype-plugin
</artifactId>
<version>
3.
0.1
</version>
<version>
3.
2.0
</version>
</plugin>
</plugins>
</pluginManagement>
...
...
@@ -50,7 +50,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-resources-plugin
</artifactId>
<version>
3.
0.2
</version>
<version>
3.
1.0
</version>
<configuration>
<!-- Required so that .gitignore gets included in archetypes; see https://issues.apache.org/jira/browse/MRESOURCES-190 -->
<addDefaultExcludes>
false
</addDefaultExcludes>
...
...
@@ -59,7 +59,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.
7.0
</version>
<version>
3.
8.1
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
...
...
ws/Archetypes/mi-maven-archetype-helloworld/src/main/resources/archetype-resources/pom.xml
View file @
7b2d5142
...
...
@@ -33,7 +33,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
3.
1.1
</version>
<version>
3.
2.0
</version>
<configuration>
<linksource>
true
</linksource>
<additionalOptions>
...
...
@@ -43,33 +43,10 @@
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-shade-plugin
</artifactId>
<version>
3.2.1
</version>
<configuration>
<transformers>
<transformer
implementation=
"org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"
>
<manifestEntries>
<Main-Class>
${package}.App
</Main-Class>
</manifestEntries>
</transformer>
</transformers>
</configuration>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
shade
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-site-plugin
</artifactId>
<version>
3.
7
.1
</version>
<version>
3.
9
.1
</version>
</plugin>
</plugins>
</build>
...
...
ws/Archetypes/mi-maven-archetype-quickstart/pom.xml
View file @
7b2d5142
...
...
@@ -34,7 +34,7 @@
<extension>
<groupId>
org.apache.maven.archetype
</groupId>
<artifactId>
archetype-packaging
</artifactId>
<version>
3.
0.1
</version>
<version>
3.
2.0
</version>
</extension>
</extensions>
...
...
@@ -43,7 +43,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-archetype-plugin
</artifactId>
<version>
3.
0.1
</version>
<version>
3.
2.0
</version>
</plugin>
</plugins>
</pluginManagement>
...
...
@@ -51,7 +51,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-resources-plugin
</artifactId>
<version>
3.
0.2
</version>
<version>
3.
1.0
</version>
<configuration>
<!-- Required so that .gitignore gets included in archetypes; see https://issues.apache.org/jira/browse/MRESOURCES-190 -->
<addDefaultExcludes>
false
</addDefaultExcludes>
...
...
@@ -60,7 +60,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.
7.0
</version>
<version>
3.
8.1
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
...
...
ws/Archetypes/mi-maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml
View file @
7b2d5142
...
...
@@ -21,14 +21,14 @@
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.1
2
</version>
<version>
4.1
3
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-core
</artifactId>
<version>
2.1
2.0
</version>
<version>
2.1
3.3
</version>
</dependency>
</dependencies>
...
...
@@ -49,7 +49,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
3.
1.1
</version>
<version>
3.
2.0
</version>
<configuration>
<linksource>
true
</linksource>
<additionalOptions>
...
...
@@ -62,7 +62,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-shade-plugin
</artifactId>
<version>
3.2.
1
</version>
<version>
3.2.
4
</version>
<configuration>
<transformers>
<transformer
...
...
@@ -85,7 +85,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-site-plugin
</artifactId>
<version>
3.
7
.1
</version>
<version>
3.
9
.1
</version>
</plugin>
</plugins>
</build>
...
...
ws/Artifacts/Unitmarking/pom.xml
View file @
7b2d5142
...
...
@@ -13,7 +13,7 @@
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<oxygenxml.version>
2
1
.1.0.
2
</oxygenxml.version>
<oxygenxml.version>
2
2
.1.0.
0
</oxygenxml.version>
</properties>
<distributionManagement>
...
...
@@ -52,6 +52,12 @@
<version>
1.2.17
</version>
</dependency>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.13
</version>
</dependency>
<dependency>
<groupId>
com.rackspace.eclipse.webtools.sourceediting
</groupId>
<artifactId>
org.eclipse.wst.xml.xpath2.processor
</artifactId>
...
...
@@ -67,7 +73,7 @@
<dependency>
<groupId>
jaxen
</groupId>
<artifactId>
jaxen
</artifactId>
<version>
1.
1.6
</version>
<version>
1.
2.0
</version>
</dependency>
</dependencies>
...
...
@@ -77,7 +83,7 @@
<extension>
<groupId>
org.apache.maven.wagon
</groupId>
<artifactId>
wagon-ssh-external
</artifactId>
<version>
3.
3.4
</version>
<version>
3.
4.1
</version>
</extension>
</extensions>
<plugins>
...
...
@@ -85,7 +91,7 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.
7.0
</version>
<version>
3.
8.1
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment