-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
100 lines (86 loc) · 2.24 KB
/
pom.xml
File metadata and controls
100 lines (86 loc) · 2.24 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>br.gov.jfrj</groupId>
<artifactId>siga-docker</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<profiles>
<profile>
<id>build-siga</id>
<modules>
<module>siga-repo</module>
</modules>
</profile>
</profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<connection>scm:git:https://github.com/projeto-siga/siga.git</connection>
<url>scm:git:https://github.com/projeto-siga/siga.git</url>
<developerConnection>scm:git:https://github.com/projeto-siga/siga.git</developerConnection>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<executions>
<execution>
<id>default-jar</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>app.server</id>
<configuration>
<descriptor>src/assembly/app.server.xml</descriptor>
<finalName>jboss</finalName>
</configuration>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
<execution>
<id>web.server</id>
<configuration>
<descriptor>src/assembly/web.server.xml</descriptor>
<finalName>apache</finalName>
</configuration>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
<execution>
<id>bluc.server</id>
<configuration>
<descriptor>src/assembly/bluc.server.xml</descriptor>
<finalName>bluc</finalName>
</configuration>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.9.4</version>
<configuration>
<goals>install</goals>
<checkoutDirectory>${project.basedir}/siga-repo</checkoutDirectory>
<skipCheckoutIfExists>false</skipCheckoutIfExists>
</configuration>
</plugin>
</plugins>
</build>
</project>