Skip to content

Commit 41064f0

Browse files
author
MGeldi
committed
Move over to Maven
1 parent 3188f9e commit 41064f0

File tree

169 files changed

+70
-176
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+70
-176
lines changed

.idea/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.idea/ASAP.iml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/uiDesigner.xml

Lines changed: 0 additions & 124 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

pom.xml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>net.sharksystem</groupId>
8+
<artifactId>ASAPJava</artifactId>
9+
<version>0.7.0</version>
10+
11+
<properties>
12+
<maven.compiler.source>11</maven.compiler.source>
13+
<maven.compiler.target>11</maven.compiler.target>
14+
<junit.jupiter.version>5.8.1</junit.jupiter.version>
15+
<junit.platform.version>1.8.1</junit.platform.version>
16+
<asap.java.version>0.7.0</asap.java.version>
17+
</properties>
18+
19+
<dependencies>
20+
<dependency>
21+
<groupId>junit</groupId>
22+
<artifactId>junit</artifactId>
23+
<version>4.13.2</version>
24+
<scope>test</scope>
25+
</dependency>
26+
27+
<!-- https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl
28+
This is for the @NotNull annotation in ASAPEncounterManagerImpl.java -->
29+
<dependency>
30+
<groupId>com.sun.xml.bind</groupId>
31+
<artifactId>jaxb-impl</artifactId>
32+
<version>3.0.2</version>
33+
</dependency>
34+
35+
</dependencies>
36+
37+
<!-- To automate running tests when packaging with maven -->
38+
<build>
39+
<plugins>
40+
<plugin>
41+
<groupId>org.apache.maven.plugins</groupId>
42+
<artifactId>maven-surefire-plugin</artifactId>
43+
<version>2.22.1</version>
44+
</plugin>
45+
</plugins>
46+
</build>
47+
48+
</project>
File renamed without changes.

src/net/sharksystem/SharkNotSupportedException.java renamed to src/main/java/net/sharksystem/SharkNotSupportedException.java

File renamed without changes.

0 commit comments

Comments
 (0)