-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
48 lines (44 loc) · 2.16 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<project>
<!-- This is the Maven Model version which MUST be 4.0.0 !!! -->
<modelVersion>4.0.0</modelVersion>
<!-- Identification of the Artifact -->
<groupId>nl.ordina.jtech</groupId>
<artifactId>MavenDemo</artifactId>
<version>0.${revision}</version>
<packaging>jar</packaging>
<properties>
<revision>0</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<!-- directory>${project.basedir}/target${revision}</directory --> <!-- Don't try this at home, bad practice! Overridden for demo purposes. -->
<plugins> <!-- with AntRun you can do many elementary tasks -->
<plugin> <!-- see https://maven.apache.org/plugins/maven-antrun-plugin/index.html and https://ant.apache.org/manual/ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase></phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target name="ant-step01">
<!--
<echo>project.basedir = ${project.basedir}</echo>
<echo>project.build.sourceDirectory = ${project.build.sourceDirectory}</echo>
<echo>project.build.directory = ${project.build.directory}</echo>
<echo>project.build.outputDirectory = ${project.build.outputDirectory}</echo>
-->
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>