root/tags/release-1.0.2/pustefix-libs/deploy.xml

Revision 4988, 2.6 KB (checked in by mtld, 2 years ago)

set version to 1.0.2

Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3  <modelVersion>4.0.0</modelVersion>
4
5  <parent>
6    <groupId>org.pustefixframework</groupId>
7    <artifactId>pustefixframework</artifactId>
8    <version>1.0.2</version>
9  </parent>
10
11  <name>Pustefix External Libraries</name>
12
13  <groupId>org.pustefixframework</groupId>
14  <artifactId>libs</artifactId>
15  <version>1.0.2</version>
16  <packaging>pom</packaging>
17 
18  <build>
19    <plugins>
20      <plugin>
21        <artifactId>maven-deploy-plugin</artifactId>
22        <executions>
23          <execution>
24            <id>saxon</id>
25            <phase>package</phase>
26            <goals><goal>deploy-file</goal></goals>
27            <configuration>
28              <repositoryId>pustefix</repositoryId>
29              <url>scpexe://pustefix@pustefixhp.schlund.de/home/pustefix/repository/maven</url>
30              <file>${basedir}/saxon-6.5.5.jar</file>
31              <groupId>com.icl.saxon</groupId>
32              <artifactId>saxon</artifactId>
33              <version>6.5.5</version>
34              <generatePom>true</generatePom>
35              <packaging>jar</packaging>
36            </configuration>
37          </execution>
38          <execution>
39            <id>jws</id>
40            <phase>package</phase>
41            <goals><goal>deploy-file</goal></goals>
42            <configuration>
43              <repositoryId>pustefix</repositoryId>
44              <url>scpexe://pustefix@pustefixhp.schlund.de/home/pustefix/repository/maven</url>
45              <file>${basedir}/jsr181-api-2.0.jar</file>
46              <groupId>javax.jws</groupId>
47              <artifactId>jsr181-api</artifactId>
48              <version>2.0</version>
49              <generatePom>true</generatePom>
50              <packaging>jar</packaging>
51            </configuration>
52          </execution>
53          <execution>
54            <id>flexiparse</id>
55            <phase>package</phase>
56            <goals><goal>deploy-file</goal></goals>
57            <configuration>
58              <repositoryId>pustefix</repositoryId>
59              <url>scpexe://pustefix@pustefixhp.schlund.de/home/pustefix/repository/maven</url>
60              <file>${basedir}/flexiparse-0.2.1.jar</file>
61              <groupId>com.marsching.flexiparse</groupId>
62              <artifactId>flexiparse</artifactId>
63              <version>0.2.1</version>
64              <generatePom>true</generatePom>
65              <packaging>jar</packaging>
66            </configuration>
67          </execution>
68        </executions>
69      </plugin>
70    </plugins>
71  </build>
72</project>
73
Note: See TracBrowser for help on using the browser.