-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
49 lines (45 loc) · 1.45 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
49
<?xml version="1.0" encoding="UTF-8"?>
<!--
DO NOT MODIFIY - GENERATED CODE
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>processing</groupId>
<artifactId>core</artifactId>
<version>1.0-SNAPSHOT</version>
<name>pconstants</name>
<description>pconstants jar</description>
<developers>
<developer>
<id>monkstone</id>
<name>Martin Prout</name>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<properties>
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<pconstants.basedir>${project.basedir}</pconstants.basedir>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<defaultGoal>package</defaultGoal>
<finalName>pconstants</finalName>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<outputDirectory>${pconstants.basedir}/lib</outputDirectory>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>