Project

General

Profile

Download (7 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<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">
3
  <modelVersion>4.0.0</modelVersion>
4
  <artifactId>cdm-webapp</artifactId>
5
  <groupId>eu.etaxonomy</groupId>
6
  <version>4.13.0-SNAPSHOT</version>
7
  <packaging>war</packaging>
8
  <name>CDM Webapp</name>
9
  <properties>
10
    <cdmlib.version>4.13.0-SNAPSHOT</cdmlib.version>
11
    <cdm.vaadin.version>4.13.0-SNAPSHOT</cdm.vaadin.version>
12
  </properties>
13
  <repositories>
14
    <!-- the cdm internal repository -->
15
    <repository>
16
      <id>EditRepository</id>
17
      <url>http://wp5.e-taxonomy.eu/mavenrepo/</url>
18
      <releases>
19
        <enabled>true</enabled>
20
        <updatePolicy>always</updatePolicy>
21
      </releases>
22
      <snapshots>
23
        <enabled>true</enabled>
24
        <updatePolicy>always</updatePolicy>
25
      </snapshots>
26
    </repository>
27
  </repositories>
28
  <distributionManagement>
29
    <repository>
30
      <uniqueVersion>false</uniqueVersion>
31
      <id>wp5.e-taxonomy.eu</id>
32
      <name>Edit Maven Repository</name>
33
      <url>scpexe://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/mavenrepo/</url>
34
      <layout>default</layout>
35
    </repository>
36
  </distributionManagement>
37
  <profiles>
38
    <profile>
39
      <id>local-repository</id>
40
      <activation>
41
        <property>
42
          <name>localrepo</name>
43
        </property>
44
      </activation>
45
      <repositories>
46
        <repository>
47
          <id>EditLocalRepository</id>
48
          <url>file://${localrepo}/eu/etaxonomy/</url>
49
          <releases>
50
            <enabled>false</enabled>
51
            <updatePolicy>always</updatePolicy>
52
          </releases>
53
          <snapshots>
54
            <enabled>true</enabled>
55
            <updatePolicy>always</updatePolicy>
56
          </snapshots>
57
        </repository>
58
      </repositories>
59
    </profile>
60
  </profiles>
61
  <dependencies>
62
    <dependency>
63
      <groupId>eu.etaxonomy</groupId>
64
      <artifactId>cdmlib-remote-webapp</artifactId>
65
      <version>${cdmlib.version}</version>
66
      <type>war</type>
67
    </dependency>
68
    <dependency>
69
      <groupId>eu.etaxonomy</groupId>
70
      <artifactId>cdm-vaadin</artifactId>
71
      <version>${cdm.vaadin.version}</version>
72
      <type>war</type>
73
    </dependency>
74
    <dependency>
75
      <groupId>eu.etaxonomy</groupId>
76
      <artifactId>cdmlib-db</artifactId>
77
      <version>${cdmlib.version}</version>
78
      <scope>test</scope>
79
    </dependency>
80
  </dependencies>
81
  <build>
82
    <plugins>
83
      <plugin>
84
        <groupId>org.apache.maven.plugins</groupId>
85
        <artifactId>maven-war-plugin</artifactId>
86
        <version>2.6</version>
87
        <configuration>
88
          <failOnMissingWebXml>flase</failOnMissingWebXml>
89
          <overlays>
90
            <!-- 
91
                Overlays are applied with a first-win strategy. 
92
                Overlays are applied in the order in which they are defined in the <overlays> configuration. 
93
                Therefore cdmlib-remote-webapp should come first.
94
                
95
                Once a change is made to any cdmlib-* project cdmlib should be build and the  
96
                cdmlib-remote-webapp.war will contain all these fresh artifacts. cdm-vaadin 
97
                in contrast is expected to be build only due to changes in the vaadin specific 
98
                code. The cdmlib-* artifact are excluded from the cdm-vaadin overlay to assure 
99
                that only the cdmlib-jars from cdm-remote-webapp can make their way into the final
100
                war.    
101
            -->
102
            <overlay>
103
              <!-- MUST BE THE FIRST war, see above -->
104
              <groupId>eu.etaxonomy</groupId>
105
              <artifactId>cdmlib-remote-webapp</artifactId>
106
            </overlay>
107
            <overlay>
108
              <groupId>eu.etaxonomy</groupId>
109
              <artifactId>cdm-vaadin</artifactId>
110
              <excludes>
111
                <exclude>WEB-INF/lib/cdmlib-*.jar</exclude>
112
              </excludes>
113
              <includes>
114
                <include>WEB-INF/lib/cdmlib-cache.jar</include>
115
              </includes>
116
            </overlay>
117
          </overlays>
118
        </configuration>
119
      </plugin>
120
      <!-- 
121
        
122
        when executing the mvn deploy directly (not via jgit-flow *-finish) unpacked war
123
        resources are accumulating and must be deleted before entering the prepare-package
124
        life cycle phase, therefore configuring this auto-clean makes a lot of sense.
125
        
126
        BUT the auto-clean is causing problems with the jgit-flow plugin,
127
        it is called twice and thus removes the cdm-webapp-x.x.x.war after it has been build,
128
        maven then fails with : "The packaging for this project did not assign a file to the build artifact"
129
        Therefore this is disabled! 
130
        
131
        A possible solution to this is to bind define a special auto-clean execution to the prepare-package phase,
132
        as long as this plugin is defined before the maven-dependency-plugin the clean should only
133
        happen before the unpack, see http://www.mkyong.com/maven/maven-plugin-execution-order-in-same-phase/
134
        Maybe it makes sense to define a fileset that only includes the unpacked war files  
135
        
136
      <plugin>
137
        <groupId>org.apache.maven.plugins</groupId>
138
        <artifactId>maven-clean-plugin</artifactId>
139
        <version>2.5</version>
140
        <executions>
141
          <execution>
142
            <id>auto-clean</id>
143
            <phase>initialize</phase>
144
            <goals>
145
              <goal>clean</goal>
146
            </goals>
147
          </execution>
148
        </executions>
149
      </plugin>
150
        -->
151
      <plugin>
152
        <groupId>external.atlassian.jgitflow</groupId>
153
        <artifactId>jgitflow-maven-plugin</artifactId>
154
        <version>1.0-m6</version>
155
        <configuration>
156
          <pushHotfixes>true</pushHotfixes>
157
          <pushReleases>true</pushReleases>
158
          <enableSshAgent>true</enableSshAgent>
159
          <allowSnapshots>true</allowSnapshots>
160
          <allowUntracked>true</allowUntracked>
161
        </configuration>
162
        <dependencies>
163
          <!-- 
164
                upgrading dependency jsch.agent.version of jgit-flow plugin to 0.1.53 
165
                in order have ssl key exchange algorithms compatible with openssh 6.7 
166
          -->
167
          <dependency>
168
            <groupId>com.jcraft</groupId>
169
            <artifactId>jsch</artifactId>
170
            <version>0.1.53</version>
171
          </dependency>
172
        </dependencies>
173
      </plugin>
174
    </plugins>
175
    <extensions>
176
      <extension>
177
        <groupId>org.apache.maven.wagon</groupId>
178
        <artifactId>wagon-scm</artifactId>
179
        <version>2.10</version>
180
      </extension>
181
      <extension>
182
        <groupId>org.apache.maven.wagon</groupId>
183
        <artifactId>wagon-ssh</artifactId>
184
        <version>2.10</version>
185
      </extension>
186
      <extension>
187
        <groupId>org.apache.maven.wagon</groupId>
188
        <artifactId>wagon-ssh-external</artifactId>
189
        <version>2.10</version>
190
      </extension>
191
    </extensions>
192
  </build>
193
</project>
(3-3/3)