|
1 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 4 | <modelVersion>4.0.0</modelVersion>
|
4 | 5 |
|
|
21 | 22 | <distribution>repo</distribution>
|
22 | 23 | </license>
|
23 | 24 | </licenses>
|
24 |
| - |
| 25 | + |
25 | 26 |
|
26 | 27 | <organization>
|
27 | 28 | <url>https://www.fugerit.org</url>
|
28 | 29 | <name>Fugerit</name>
|
29 | 30 | </organization>
|
30 | 31 |
|
31 | 32 | <properties>
|
32 |
| - <fj-daogen-version>1.1.0-rc.4</fj-daogen-version> |
| 33 | + <fj-daogen-version>1.1.0-rc.5</fj-daogen-version> |
| 34 | + <gen.base.dir>${project.basedir}</gen.base.dir> |
| 35 | + <generated.source.daogen>target/generated-sources/daogen</generated.source.daogen> |
33 | 36 | </properties>
|
34 |
| - |
| 37 | + |
35 | 38 | <build>
|
36 | 39 |
|
| 40 | + <plugins> |
| 41 | + |
| 42 | + <plugin> |
| 43 | + <groupId>org.fugerit.java</groupId> |
| 44 | + <artifactId>fj-daogen-maven-plugin</artifactId> |
| 45 | + <version>${fj-daogen-version}</version> |
| 46 | + <executions> |
| 47 | + <execution> |
| 48 | + <id>daogen</id> |
| 49 | + <phase>generate-sources</phase> |
| 50 | + <goals> |
| 51 | + <goal>generate</goal> |
| 52 | + </goals> |
| 53 | + </execution> |
| 54 | + </executions> |
| 55 | + <configuration> |
| 56 | + <daogenConfig>${project.basedir}/src/test/resources/core-jvfs/db/daogen/daogen-config-jvfs.xml</daogenConfig> |
| 57 | + <genBaseDir>${gen.base.dir}</genBaseDir> |
| 58 | + <generatedSourceHelper>${generated.source.daogen}</generatedSourceHelper> |
| 59 | + </configuration> |
| 60 | + </plugin> |
| 61 | + |
| 62 | + <plugin> |
| 63 | + <groupId>org.codehaus.mojo</groupId> |
| 64 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 65 | + <version>3.4.0</version> |
| 66 | + <executions> |
| 67 | + <execution> |
| 68 | + <id>add-source</id> |
| 69 | + <phase>generate-sources</phase> |
| 70 | + <goals> |
| 71 | + <goal>add-source</goal> |
| 72 | + </goals> |
| 73 | + <configuration> |
| 74 | + <sources> |
| 75 | + <source>${gen.base.dir}/${generated.source.daogen}</source> |
| 76 | + </sources> |
| 77 | + </configuration> |
| 78 | + </execution> |
| 79 | + </executions> |
| 80 | + </plugin> |
| 81 | + |
| 82 | + </plugins> |
| 83 | + |
37 | 84 | </build>
|
38 | 85 |
|
39 | 86 | <dependencies>
|
40 | 87 |
|
41 |
| - <dependency> |
42 |
| - <groupId>org.slf4j</groupId> |
43 |
| - <artifactId>slf4j-api</artifactId> |
| 88 | + <dependency> |
| 89 | + <groupId>org.slf4j</groupId> |
| 90 | + <artifactId>slf4j-api</artifactId> |
44 | 91 | </dependency>
|
45 | 92 |
|
46 | 93 | <dependency>
|
47 |
| - <groupId>org.fugerit.java</groupId> |
48 |
| - <artifactId>fj-core</artifactId> |
| 94 | + <groupId>org.fugerit.java</groupId> |
| 95 | + <artifactId>fj-core</artifactId> |
49 | 96 | </dependency>
|
50 | 97 |
|
51 | 98 | <dependency>
|
52 |
| - <groupId>org.apache.commons</groupId> |
53 |
| - <artifactId>commons-dbcp2</artifactId> |
| 99 | + <groupId>org.apache.commons</groupId> |
| 100 | + <artifactId>commons-dbcp2</artifactId> |
54 | 101 | </dependency>
|
55 | 102 |
|
56 | 103 | <dependency>
|
57 | 104 | <groupId>org.apache.logging.log4j</groupId>
|
58 |
| - <artifactId>log4j-api</artifactId> |
59 |
| - <scope>test</scope> |
| 105 | + <artifactId>log4j-api</artifactId> |
| 106 | + <scope>test</scope> |
60 | 107 | </dependency>
|
61 | 108 | <dependency>
|
62 |
| - <groupId>org.apache.logging.log4j</groupId> |
63 |
| - <artifactId>log4j-core</artifactId> |
64 |
| - <scope>test</scope> |
| 109 | + <groupId>org.apache.logging.log4j</groupId> |
| 110 | + <artifactId>log4j-core</artifactId> |
| 111 | + <scope>test</scope> |
65 | 112 | </dependency>
|
66 | 113 | <dependency>
|
67 | 114 | <groupId>org.apache.logging.log4j</groupId>
|
68 |
| - <artifactId>log4j-slf4j2-impl</artifactId> |
69 |
| - <scope>test</scope> |
| 115 | + <artifactId>log4j-slf4j2-impl</artifactId> |
| 116 | + <scope>test</scope> |
70 | 117 | </dependency>
|
71 | 118 |
|
72 | 119 | <dependency>
|
|
80 | 127 | </exclusion>
|
81 | 128 | </exclusions>
|
82 | 129 | </dependency>
|
83 |
| - |
| 130 | + |
84 | 131 | <dependency>
|
85 |
| - <groupId>org.fugerit.java</groupId> |
86 |
| - <artifactId>fj-daogen-base</artifactId> |
87 |
| - <version>${fj-daogen-version}</version> |
88 |
| - <scope>test</scope> |
| 132 | + <groupId>org.fugerit.java</groupId> |
| 133 | + <artifactId>fj-daogen-base</artifactId> |
| 134 | + <version>${fj-daogen-version}</version> |
| 135 | + <scope>test</scope> |
89 | 136 | <exclusions>
|
90 | 137 | <exclusion>
|
91 | 138 | <groupId>*</groupId>
|
|
95 | 142 | </dependency>
|
96 | 143 |
|
97 | 144 | </dependencies>
|
98 |
| - |
| 145 | + |
99 | 146 | <profiles>
|
100 |
| - |
101 | 147 |
|
102 |
| - |
| 148 | + |
103 | 149 | </profiles>
|
104 |
| - |
| 150 | + |
105 | 151 | </project>
|
0 commit comments