-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpom.xml
More file actions
152 lines (146 loc) · 5.55 KB
/
pom.xml
File metadata and controls
152 lines (146 loc) · 5.55 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>nl.han.ica</groupId>
<artifactId>oopg</artifactId>
<version>2.0.0</version>
<name>OOPD Game Engine</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.version>3.7.0</maven.compiler.version>
<java.version>1.8</java.version>
<javadoc.version>3.0.0</javadoc.version>
<jacoco.version>0.8.1</jacoco.version>
<coveralls.version>4.3.0</coveralls.version>
<junit.version>4.13.1</junit.version>
<mockito.version>1.10.19</mockito.version>
<surefire.version>2.21.0</surefire.version>
<maven-surefire-plugin>2.19.1</maven-surefire-plugin>
</properties>
<build>
<finalName>oopg</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>${artifactId}-full</finalName>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>${coveralls.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadoc.version}</version>
</plugin>
</plugins>
</build>
<dependencies>
<!-- TESTING -->
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<!-- PROCESSING -->
<dependency>
<groupId>processing</groupId>
<artifactId>core</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>processing</groupId>
<artifactId>gifanimation</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>processing</groupId>
<artifactId>sound</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>processing.sound</groupId>
<artifactId>jl</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>processing.sound</groupId>
<artifactId>jsminim</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>processing.sound</groupId>
<artifactId>minim</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>processing.sound</groupId>
<artifactId>mp3spi</artifactId>
<version>1.9.4</version>
</dependency>
<dependency>
<groupId>processing.sound</groupId>
<artifactId>tritonus_aos</artifactId>
<version>1.9.4</version>
</dependency>
<dependency>
<groupId>processing.sound</groupId>
<artifactId>tritonus_share</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>processing-maven-repo</id>
<url>https://raw.github.com/ddoa/processing-maven-repo/master/</url>
</repository>
</repositories>
</project>