[go: up one dir, main page]

Menu

[48b81b]: / pom.xml  Maximize  Restore  History

Download this file

68 lines (63 with data), 2.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ndg.common</groupId>
<artifactId>ndgutils</artifactId>
<version>0.7.0</version>
<name>ndgUtils</name>
<description>Selected java utilities moved out of ndgJavaUtils</description>
<scm>
<connection>scm:git:ssh://nigelgay@git.code.sf.net/p/momime/utils</connection>
<tag>ndgutils-0.7.0</tag>
</scm>
<parent>
<groupId>com.ndg.common</groupId>
<artifactId>parent</artifactId>
<version>0.7.0</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>com.evolvedbinary.maven.jvnet</groupId>
<artifactId>jaxb30-maven-plugin</artifactId>
<executions>
<execution>
<id>main-xjc-generate</id>
<phase>generate-sources</phase>
<goals><goal>generate</goal></goals>
<configuration>
<schemaDirectory>src/main/resources/com.ndg.utils.swing.layoutmanagers</schemaDirectory>
<generateDirectory>target/generated-sources/xjc-layoutmanagers</generateDirectory>
<episodeFile>target/generated-sources/xjc-layoutmanagers/META-INF/layoutmanagers.episode</episodeFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jcl</artifactId>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
</dependency>
</dependencies>
</project>