-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdependency-reduced-pom.xml
More file actions
122 lines (122 loc) · 3.92 KB
/
dependency-reduced-pom.xml
File metadata and controls
122 lines (122 loc) · 3.92 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
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>dicoogle-plugins</artifactId>
<groupId>pt.ua.ieeta</groupId>
<version>3.4.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.dicoogle.plugins</groupId>
<artifactId>dicomweb</artifactId>
<name>dicomweb</name>
<version>1.0.0-SNAPSHOT</version>
<build>
<resources>
<resource>
<directory>src/main/resources/html5/</directory>
</resource>
<resource>
<targetPath>WebPlugins/webplugin-sample</targetPath>
<directory>src/main/resources/webplugin-sample/dist</directory>
<includes>
<include>package.json</include>
<include>module.js</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>**/*.SF</exclude>
<exclude>**/*.DSA</exclude>
<exclude>**/*.RSA</exclude>
<exclude>**/module-info.class</exclude>
<exclude>**/module-info.java</exclude>
</excludes>
</filter>
</filters>
<minimizeJar>true</minimizeJar>
<relocations>
<relocation>
<pattern>org.dcm4che3</pattern>
<shadedPattern>org.dcm4che5</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<outputDirectory>C:\Users\bastiao\Projects\Dicoogle\dicoogle\dicoogle\target\Plugins</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<snapshots />
<id>mavencentral</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>dicoogle-public</id>
<url>https://dev.bmd-software.com/nexus/content/repositories/dicoogle-public</url>
</repository>
<repository>
<id>maven-restlet</id>
<name>Public online Restlet repository</name>
<url>https://maven.restlet.talend.com</url>
</repository>
<repository>
<snapshots />
<id>dcm4che</id>
<url>https://www.dcm4che.org/maven2/</url>
</repository>
<repository>
<id>sourceforge-releases</id>
<name>Sourceforge Releases</name>
<url>https://oss.sonatype.org/content/repositories/sourceforge-releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>pt.ua.ieeta</groupId>
<artifactId>dicoogle</artifactId>
<version>3.4.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<dicoogle.version>3.4.1</dicoogle.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jetty.version>9.0.3.v20130506</jetty.version>
<dcm4che.version>5.33.1</dcm4che.version>
</properties>
</project>