Project

General

Profile

Download (6.94 KB) Statistics
| Branch: | Tag: | Revision:
1
<project>
2
  <modelVersion>4.0.0</modelVersion>
3
  <groupId>eu.etaxonomy.taxeditor</groupId>
4
  <artifactId>eu.etaxonomy.taxeditor.molecular.lib</artifactId>
5
  <packaging>eclipse-plugin</packaging>
6
  
7
  <parent>
8
    <groupId>eu.etaxonomy</groupId>
9
    <artifactId>taxeditor-parent</artifactId>
10
    <version>4.2.0-SNAPSHOT</version>
11
  </parent>
12

    
13
  <build>
14
    <plugins>
15
      <plugin>
16
        <groupId>org.apache.maven.plugins</groupId>
17
        <artifactId>maven-dependency-plugin</artifactId>
18
        <version>2.4</version>
19
        <executions>
20
          <execution>
21
            <id>copy-dependencies</id>
22
            <phase>validate</phase>
23
            <goals>
24
              <goal>copy-dependencies</goal>
25
            </goals>
26
            <configuration>
27
              <includeArtifactIds>libralign-swt, libralign-core,
28
                bioinfweb-commons-swt, bioinfweb-commons-core,
29
                bioinfweb-commons-bio, bioinfweb-commons-swing,
30
                tic-core, libralign-biojava1, core, sequencing, 
31
                tic-swt, jphyloio-core, owlapi-xmlutils, commons-collections4</includeArtifactIds>
32
              <outputDirectory>lib</outputDirectory>
33
              <overWriteReleases>true</overWriteReleases>
34
              <overWriteSnapshots>true</overWriteSnapshots>
35
              <excludeTransitive>true</excludeTransitive>
36
            </configuration>
37
          </execution>
38
          <!-- <execution> -->
39
          <!-- <id>copy-dependencies-sources</id> -->
40
          <!-- <phase>validate</phase> -->
41
          <!-- <goals> -->
42
          <!-- <goal>copy-dependencies</goal> -->
43
          <!-- </goals> -->
44
          <!-- <configuration> -->
45
          <!-- <classifier>sources</classifier> -->
46
          <!-- <includeArtifactIds>cdmlib-commons,cdmlib-model,cdmlib-persistence,cdmlib-remote,cdmlib-print,cdmlib-services,cdmlib-ext,cdmlib-io</includeArtifactIds> -->
47
          <!-- <outputDirectory>lib</outputDirectory> -->
48
          <!-- <overWriteReleases>true</overWriteReleases> -->
49
          <!-- <overWriteSnapshots>true</overWriteSnapshots> -->
50
          <!-- <excludeTransitive>true</excludeTransitive> -->
51
          <!-- <failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact> -->
52
          <!-- </configuration> -->
53
          <!-- </execution> -->
54
        </executions>
55
      </plugin>
56
      <plugin>
57
        <groupId>org.apache.maven.plugins</groupId>
58
        <artifactId>maven-antrun-plugin</artifactId>
59
        <version>1.7</version>
60
        <executions>
61
          <execution>
62
            <id>remove-existing-jars</id>
63
            <phase>clean</phase>
64
            <goals>
65
              <goal>run</goal>
66
            </goals>
67
            <configuration>
68
              <target>
69
                <echo>Remove all jars</echo>
70
                <delete>
71
                  <fileset dir="./lib" includes="*" />
72
                </delete>
73
              </target>
74
            </configuration>
75
          </execution>
76
          <execution>
77
            <id>update-snapshot-jar-names</id>
78
            <phase>validate</phase>
79
            <goals>
80
              <goal>run</goal>
81
            </goals>
82
            <configuration>
83
              <target>
84
                <echo>Update jars to SNAPSHOT when build with
85
                  timestamp</echo>
86
                <move todir="./lib">
87
                  <fileset dir="./lib" />
88
                  <mapper type="regexp" from="(^bioinfweb\-.*\-[0-9]-)[0-9.-]+(\.jar)" to="\1SNAPSHOT\2" />
89
                </move>
90
                <move todir="./lib">
91
                  <fileset dir="./lib" />
92
                  <mapper type="regexp" from="(^libralign\-.*\-[0-9]-)[0-9.-]+(\.jar)" to="\1SNAPSHOT\2" />
93
                </move>
94
                <move todir="./lib">
95
                  <fileset dir="./lib" />
96
                  <mapper type="regexp" from="(^tic\-.*\-[0-9]-)[0-9.-]+(\.jar)" to="\1SNAPSHOT\2" />
97
                </move>
98
                <move todir="./lib">
99
                  <fileset dir="./lib" />
100
                  <mapper type="regexp" from="(^jphyloio\-.*\-[0-9]-)[0-9.-]+(\.jar)" to="\1SNAPSHOT\2" />
101
                </move>
102
              </target>
103
            </configuration>
104
          </execution>
105
        </executions>
106
      </plugin>
107
    </plugins>
108
  </build>
109

    
110
  <dependencies>
111
    <!-- JPhyloIO -->
112
    <dependency>
113
      <groupId>info.bioinfweb.jphyloio</groupId>
114
      <artifactId>jphyloio-core</artifactId>
115
      <version>0-SNAPSHOT</version>
116
    </dependency>
117
    <dependency>
118
      <groupId>info.bioinfweb.thirdparty.owlapi</groupId>
119
      <artifactId>owlapi-xmlutils</artifactId>
120
      <version>4.1.4</version>
121
    </dependency>
122
    <!-- LibrAlign -->
123
    <dependency>
124
      <groupId>info.bioinfweb.libralign</groupId>
125
      <artifactId>libralign-core</artifactId>
126
      <version>0-SNAPSHOT</version>
127
    </dependency>
128
    <dependency>
129
      <groupId>info.bioinfweb.libralign</groupId>
130
      <artifactId>libralign-swt</artifactId>
131
      <version>0-SNAPSHOT</version>
132
    </dependency>
133
    <dependency>
134
      <groupId>info.bioinfweb.libralign</groupId>
135
      <artifactId>libralign-biojava1</artifactId>
136
      <version>0-SNAPSHOT</version>
137
    </dependency>
138
    <!-- bioinfweb.commons -->
139
    <dependency>
140
      <groupId>info.bioinfweb.commons.java</groupId>
141
      <artifactId>bioinfweb-commons-swt</artifactId>
142
      <version>2-SNAPSHOT</version>
143
    </dependency>
144
    <dependency>
145
      <groupId>info.bioinfweb.commons.java</groupId>
146
      <artifactId>bioinfweb-commons-core</artifactId>
147
      <version>2-SNAPSHOT</version>
148
    </dependency>
149
    <dependency>
150
      <groupId>info.bioinfweb.commons.java</groupId>
151
      <artifactId>bioinfweb-commons-bio</artifactId>
152
      <version>2-SNAPSHOT</version>
153
    </dependency>
154
    <dependency>
155
      <groupId>info.bioinfweb.commons.java</groupId>
156
      <artifactId>bioinfweb-commons-swing</artifactId>
157
      <version>2-SNAPSHOT</version>
158
    </dependency>
159
    <!-- TIC -->
160
    <dependency>
161
      <groupId>info.bioinfweb.tic</groupId>
162
      <artifactId>tic-core</artifactId>
163
      <version>2-SNAPSHOT</version>
164
    </dependency>
165
    <dependency>
166
      <groupId>info.bioinfweb.tic</groupId>
167
      <artifactId>tic-swt</artifactId>
168
      <version>2-SNAPSHOT</version>
169
    </dependency>
170
    <!-- BioJava -->
171
    <dependency>
172
      <groupId>org.biojava</groupId>
173
      <artifactId>core</artifactId>
174
      <version>1.9.2</version>
175
    </dependency>
176
    <dependency>
177
      <groupId>org.biojava</groupId>
178
      <artifactId>sequencing</artifactId>
179
      <version>1.9.2</version>
180
    </dependency>
181
    <!-- Apache commons -->
182
    <dependency>
183
      <groupId>org.apache.commons</groupId>
184
      <artifactId>commons-collections4</artifactId>
185
      <version>4.1</version>
186
    </dependency>
187
  </dependencies>
188

    
189
  <repositories>
190
    <repository>
191
      <id>bioinfweb-maven-repo</id>
192
      <name>bioinfweb repository</name>
193
      <url>http://bioinfweb.info/MavenRepository/</url>
194
    </repository>
195
    <!-- <repository>
196
      <id>central-maven-repo</id>
197
      <name>Maven Central</name>
198
      <url>http://central.maven.org/maven2/</url>
199
    </repository> -->
200
  </repositories>
201
</project> 
202

    
(5-5/5)