IteraciĆ³n 3(VersiĆ³n sin idiomas)
[ISBets21MAUBRY] / eclipse-workspace / ISBets21MAUBRY / pom.xml
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/xsd/maven-4.0.0.xsd">
2   <modelVersion>4.0.0</modelVersion>
3   <groupId>Bets21</groupId>
4   <artifactId>Bets21</artifactId>
5   <version>0.0.1-SNAPSHOT</version>
6
7 <build>
8     <plugins>
9         <plugin>
10           <groupId>org.apache.maven.plugins</groupId>
11           <artifactId>maven-surefire-plugin</artifactId>
12           <version>2.19.1</version>
13           <configuration>
14                <testFailureIgnore>true</testFailureIgnore>
15             </configuration>
16         </plugin>
17 <plugin>
18   <artifactId>maven-resources-plugin</artifactId>
19   <version>3.0.2</version>
20   <executions>
21     <execution>
22       <id>copy-imagenes</id>
23       <phase>validate</phase>
24       <goals>
25         <goal>copy-resources</goal>
26       </goals>
27       <configuration>
28         <outputDirectory>${basedir}/target/imagenes</outputDirectory>
29         <resources>
30           <resource>
31             <directory>imagenes</directory>
32             <filtering>true</filtering>
33           </resource>
34         </resources>
35       </configuration>
36     </execution>
37     
38     <execution>
39       <id>copy-configuration</id>
40       <phase>validate</phase>
41       <goals>
42         <goal>copy-resources</goal>
43       </goals>
44       <configuration>
45         <outputDirectory>${basedir}/target/configuration</outputDirectory>
46         <resources>
47           <resource>
48             <directory>src/main/resources</directory>
49             <filtering>true</filtering>
50           </resource>
51         </resources>
52       </configuration>
53     </execution>
54   </executions>
55   </plugin>
56    </plugins>
57 </build>
58  <repositories>
59         <repository>
60                 <id>objectdb</id>
61                 <name>ObjectDB Repository</name>
62                 <url>https://m2.objectdb.com</url>
63         </repository>
64 </repositories>
65
66 <properties>
67     <maven.compiler.target>1.8</maven.compiler.target>
68     <maven.compiler.source>1.8</maven.compiler.source>
69 </properties>
70
71 <!-- https://mvnrepository.com/artifact/junit/junit -->
72 <dependencies>
73         <dependency>
74           <groupId>junit</groupId>
75           <artifactId>junit</artifactId>
76           <version>4.5</version>
77            <scope>test</scope>
78         </dependency> 
79                 <dependency>
80                         <groupId>com.toedter</groupId>
81                         <artifactId>jcalendar</artifactId>
82                         <version>1.4</version>
83                 </dependency>
84
85                 <!-- API JAXB -->
86                 <dependency>
87                         <groupId>jakarta.xml.bind</groupId>
88                         <artifactId>jakarta.xml.bind-api</artifactId>
89                         <version>2.3.2</version>
90                 </dependency>
91
92                 <!-- Runtime -->
93                 <dependency>
94                         <groupId>org.glassfish.jaxb</groupId>
95                         <artifactId>jaxb-runtime</artifactId>
96                         <version>2.3.2</version>
97                 </dependency>
98
99
100                 <!-- API JAX-WS -->
101                 <dependency>
102                         <groupId>jakarta.xml.ws</groupId>
103                         <artifactId>jakarta.xml.ws-api</artifactId>
104                         <version>2.3.2</version>
105                 </dependency>
106                 
107                 <!-- Runtime -->
108                 <dependency>
109                         <groupId>com.sun.xml.ws</groupId>
110                         <artifactId>jaxws-rt</artifactId>
111                         <version>2.3.2</version>
112                 </dependency>
113
114                 <dependency>
115                         <groupId>com.objectdb</groupId>
116                         <artifactId>objectdb</artifactId>
117                         <version>2.8.1</version>
118                 </dependency>
119                 <dependency>
120                         <groupId>org.eclipse.persistence</groupId>
121                         <artifactId>javax.persistence</artifactId>
122                         <version>2.1.0</version>
123                 </dependency>
124                 <dependency>
125                         <groupId>javax.transaction</groupId>
126                         <artifactId>jta</artifactId>
127                         <version>1.1</version>
128                 </dependency>           
129
130         </dependencies>
131
132 </project>