Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
vadere
vadere
Commits
a2882279
Commit
a2882279
authored
Apr 27, 2018
by
Stefan Schuhbaeck
Browse files
add version variables to pom.xml
parent
47bd1e8d
Changes
4
Hide whitespace changes
Inline
Side-by-side
VadereGui/pom.xml
View file @
a2882279
...
...
@@ -59,10 +59,10 @@
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.0
</version>
<version>
${maven-compiler.version}
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
<source>
${maven-compiler.source.version}
</source>
<target>
${maven-compiler.target.version}
</target>
</configuration>
</plugin>
...
...
VadereSimulator/pom.xml
View file @
a2882279
...
...
@@ -52,10 +52,10 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.0
</version>
<version>
${maven-compiler.version}
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
<source>
${maven-compiler.source.version}
</source>
<target>
${maven-compiler.target.version}
</target>
</configuration>
</plugin>
<plugin>
...
...
VadereState/pom.xml
View file @
a2882279
...
...
@@ -16,10 +16,10 @@
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.0
</version>
<version>
${maven-compiler.version}
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
<source>
${maven-compiler.source.version}
</source>
<target>
${maven-compiler.target.version}
</target>
</configuration>
</plugin>
<plugin>
...
...
pom.xml
View file @
a2882279
...
...
@@ -8,6 +8,10 @@
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<auto-service.version>
1.0-rc2
</auto-service.version>
<maven-compiler.version>
3.6.1
</maven-compiler.version>
<maven-compiler.source.version>
1.8
</maven-compiler.source.version>
<maven-compiler.target.version>
1.8
</maven-compiler.target.version>
</properties>
<!-- modules -->
...
...
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