-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpom.xml
86 lines (86 loc) · 3.61 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
<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>de.friedenhagen.multimodule</groupId>
<artifactId>parent</artifactId>
<version>1.12-SNAPSHOT</version>
<packaging>pom</packaging>
<name>parent</name>
<scm>
<connection>scm:svn:file:///Software/nobackup/svnrepo/multimodule/trunk</connection>
<developerConnection>scm:svn:file:///Software/nobackup/svnrepo/multimodule/trunk</developerConnection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ui-snapshot</id>
<uniqueVersion>true</uniqueVersion>
<url>http://localhost:8080/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>ui-staging</id>
<uniqueVersion>true</uniqueVersion>
<url>http://localhost:8080/nexus/content/repositories/staging/</url>
</repository>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.2</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
<inherited>true</inherited>
<configuration>
<tagBase>file:///Software/nobackup/svnrepo/multimodule/releases/</tagBase>
<releaseProfiles>multimodule-tag-modules</releaseProfiles>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>core</module>
<module>app1</module>
<module>app2</module>
</modules>
<profiles>
<profile>
<id>multimodule-tag-modules</id>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<id>multimodule-tag-modules</id>
<inherited>true</inherited>
<phase>deploy</phase>
<configuration>
<goalsDirectory>..</goalsDirectory>
<tagBase>file:///Software/nobackup/svnrepo/multimodule/releases/</tagBase>
<tag>${project.artifactId}-${project.version}</tag>
</configuration>
<goals>
<goal>tag</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>