~wattazoum/livrezmoi/trackingwo-remastered

« back to all changes in this revision

Viewing changes to trackingwo-ejbs/pom.xml

  • Committer: wattazoum
  • Date: 2009-08-16 12:08:23 UTC
  • Revision ID: wattazoum@wattazoum-lapto-20090816120823-ho6ua81m9l4dk0lv
we now generate wsdl files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<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/maven-v4_0_0.xsd">
 
1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
2
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2
3
  <parent>
3
4
    <artifactId>trackingwofull</artifactId>
4
5
    <groupId>com.npd</groupId>
11
12
  <name>Tracking WO EJBs</name>
12
13
  <version>0.1-SNAPSHOT</version>
13
14
  <build>
14
 
        <plugins>
15
 
                <plugin>
16
 
                        <groupId>org.apache.maven.plugins</groupId>
17
 
                        <artifactId>maven-ejb-plugin</artifactId>
18
 
                        <configuration>
19
 
                          <ejbVersion>3.0</ejbVersion>
20
 
                        </configuration>
21
 
                </plugin>
22
 
        </plugins>
 
15
    <plugins>
 
16
      <plugin>
 
17
        <groupId>org.apache.maven.plugins</groupId>
 
18
        <artifactId>maven-ejb-plugin</artifactId>
 
19
        <configuration>
 
20
          <ejbVersion>3.0</ejbVersion>
 
21
        </configuration>
 
22
      </plugin>
 
23
      <plugin>
 
24
        <groupId>org.codehaus.mojo</groupId>
 
25
        <artifactId>jaxws-maven-plugin</artifactId>
 
26
        <version>1.12</version>
 
27
        <executions>
 
28
          <execution>
 
29
            <id>gen-fileupload-ws</id>
 
30
            <phase>generate-resources</phase>
 
31
            <goals>
 
32
              <goal>wsgen</goal>
 
33
            </goals>
 
34
            <configuration>
 
35
              <sei>com.npd.trackingwo.business.FileUpload</sei>
 
36
              <packageName>com.npd.trackingwo.client.webservice.fileupload</packageName>
 
37
            </configuration>
 
38
          </execution>
 
39
          <execution>
 
40
            <id>gen-uihelper-ws</id>
 
41
            <phase>generate-resources</phase>
 
42
            <goals>
 
43
              <goal>wsgen</goal>
 
44
            </goals>
 
45
            <configuration>
 
46
              <sei>com.npd.trackingwo.helper.UIHelperBusiness</sei>
 
47
              <packageName>com.npd.trackingwo.client.webservice.ui</packageName>
 
48
            </configuration>
 
49
          </execution>
 
50
          <execution>
 
51
            <id>gen-forms-ws</id>
 
52
            <phase>generate-resources</phase>
 
53
            <goals>
 
54
              <goal>wsgen</goal>
 
55
            </goals>
 
56
            <configuration>
 
57
              <sei>com.npd.trackingwo.business.FormsBusiness</sei>
 
58
              <packageName>com.npd.trackingwo.client.webservice.form</packageName>
 
59
            </configuration>
 
60
          </execution>
 
61
        </executions>
 
62
        <configuration>
 
63
          <genWsdl>true</genWsdl>
 
64
        </configuration>
 
65
        <dependencies>
 
66
          <dependency>
 
67
            <groupId>javax.persistence</groupId>
 
68
            <artifactId>persistence-api</artifactId>
 
69
            <version>1.0</version>
 
70
            <scope>provided</scope>
 
71
          </dependency>
 
72
          <dependency>
 
73
            <groupId>javax.ejb</groupId>
 
74
            <artifactId>ejb-api</artifactId>
 
75
            <version>3.0</version>
 
76
          </dependency>
 
77
        </dependencies>
 
78
      </plugin>
 
79
    </plugins>
23
80
  </build>
24
81
  <repositories>
25
 
        <repository>
26
 
                <id>jboss</id>
27
 
                <url>http://repository.jboss.com/maven2/</url>
28
 
                <snapshots>
29
 
                        <enabled>false</enabled>
30
 
                </snapshots>
31
 
        </repository>
 
82
    <repository>
 
83
      <id>jboss</id>
 
84
      <url>http://repository.jboss.com/maven2/</url>
 
85
      <snapshots>
 
86
        <enabled>false</enabled>
 
87
      </snapshots>
 
88
    </repository>
32
89
  </repositories>
33
90
  <dependencies>
34
 
        <dependency>
35
 
                <groupId>javax.persistence</groupId>
36
 
                <artifactId>persistence-api</artifactId>
37
 
                <version>1.0</version>
38
 
                <scope>provided</scope>
39
 
        </dependency>
40
 
        <dependency>
41
 
                <groupId>javax.ejb</groupId>
42
 
                <artifactId>ejb-api</artifactId>
43
 
                <version>3.0</version>
44
 
                <scope>provided</scope>
45
 
        </dependency>
46
 
        <dependency>
47
 
                <groupId>com.npd.trackingwo</groupId>
48
 
                <artifactId>framework</artifactId>
49
 
                <version>0.1-SNAPSHOT</version>
50
 
                <scope>compile</scope>
51
 
        </dependency>
 
91
    <dependency>
 
92
      <groupId>javax.persistence</groupId>
 
93
      <artifactId>persistence-api</artifactId>
 
94
      <version>1.0</version>
 
95
      <scope>provided</scope>
 
96
    </dependency>
 
97
    <dependency>
 
98
      <groupId>javax.ejb</groupId>
 
99
      <artifactId>ejb-api</artifactId>
 
100
      <version>3.0</version>
 
101
      <scope>provided</scope>
 
102
    </dependency>
 
103
    <dependency>
 
104
      <groupId>com.npd.trackingwo</groupId>
 
105
      <artifactId>framework</artifactId>
 
106
      <version>0.1-SNAPSHOT</version>
 
107
    </dependency>
 
108
    <!-- For wsgen -->
 
109
    <dependency>
 
110
      <groupId>com.sun.xml.ws</groupId>
 
111
      <artifactId>jaxws-rt</artifactId>
 
112
      <version>2.1.3</version>
 
113
      <scope>provided</scope>
 
114
    </dependency>
52
115
  </dependencies>
53
116
</project>
 
 
b'\\ No newline at end of file'