forked from luckfamousa/DicomDeidentify
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
131 lines (118 loc) · 4.04 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
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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.stereotypez</groupId>
<artifactId>DicomDeidentify_${scala.version.major}</artifactId>
<version>0.4.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>DICOM Deidentification library</description>
<url>https://github.com/luckfamousa/DicomDeidentify</url>
<inceptionYear>2019</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Felix Nensa</name>
<email>[email protected]</email>
<organizationUrl>https://twitter.com/FelixNensa</organizationUrl>
</developer>
<developer>
<name>Moritz Ulrich</name>
<email>[email protected]</email>
<organizationUrl>https://tarn-vedra.de</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/luckfamousa/DicomDeidentify.git</connection>
<developerConnection>scm:git:ssh://github.com:luckfamousa/DicomDeidentify.git</developerConnection>
<url>http://github.com/luckfamousa/DicomDeidentify/tree/master</url>
</scm>
<properties>
<maven.compiler.source>13</maven.compiler.source>
<maven.compiler.target>13</maven.compiler.target>
<encoding>UTF-8</encoding>
<scala.version.major>2.13</scala.version.major>
<scala.version>${scala.version.major}.8</scala.version>
<dcm4che.version>3.3.8</dcm4che.version>
</properties>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.version}</version>
</dependency>
<dependency>
<groupId>org.dcm4che</groupId>
<artifactId>dcm4che-core</artifactId>
<version>${dcm4che.version}</version>
</dependency>
<dependency>
<groupId>io.spray</groupId>
<artifactId>spray-json_${scala.version.major}</artifactId>
<version>1.3.5</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>dcm4che-repo</id>
<name>Dcm4Che Repository</name>
<url>https://www.dcm4che.org/maven2/</url>
</repository>
</repositories>
<distributionManagement>
<!-- GitHub Packages -->
<repository>
<id>github</id>
<name>GitHub UMEssen Apache Maven Packages</name>
<url>https://maven.pkg.github.com/UMEssen/DicomDeidentify</url>
</repository>
<!-- GitHub Repository -->
<snapshotRepository>
<id>github</id>
<name>GitHub UMEssen Apache Maven Packages</name>
<url>https://maven.pkg.github.com/UMEssen/DicomDeidentify</url>
</snapshotRepository>
</distributionManagement>
<build>
<sourceDirectory>src/main/scala</sourceDirectory>
<testSourceDirectory>src/test/scala</testSourceDirectory>
<plugins>
<plugin>
<!-- see http://davidb.github.com/scala-maven-plugin -->
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>4.6.1</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
<configuration>
<args>
<arg>-dependencyfile</arg>
<arg>${project.build.directory}/.scala_dependencies</arg>
</args>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
</plugins>
</build>
</project>