|
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 |
|
5 | | - <groupId>org.fugerit.java</groupId> |
| 6 | + <parent> |
| 7 | + <groupId>org.fugerit.java</groupId> |
| 8 | + <artifactId>fj-bom</artifactId> |
| 9 | + <version>1.4.0</version> |
| 10 | + <relativePath></relativePath> |
| 11 | + </parent> |
| 12 | + |
6 | 13 | <artifactId>query-export-tool</artifactId> |
7 | 14 |
|
8 | 15 | <version>0.3.2</version> |
9 | 16 | <packaging>jar</packaging> |
10 | 17 |
|
11 | 18 | <name>query-export-tool</name> |
12 | | - <description>Tool export query in CSV (and in the furutre other) formats</description> |
| 19 | + <description>Tool export query in CSV (and in the future other) formats</description> |
13 | 20 | <url>http://www.fugerit.org/java/</url> |
14 | 21 |
|
15 | 22 | <scm> |
|
23 | 30 | <maven.compiler.target>1.8</maven.compiler.target> |
24 | 31 | <maven.compiler.source>1.8</maven.compiler.source> |
25 | 32 | <!-- libraries versions --> |
26 | | - <fj-version>0.7.6.8</fj-version> |
| 33 | + <fj-version>8.3.7</fj-version> |
27 | 34 | <opencsv-version>5.6</opencsv-version> |
28 | | - <poi-version>4.1.2</poi-version> |
29 | 35 | </properties> |
30 | 36 |
|
31 | 37 | <licenses> |
|
65 | 71 | <artifactId>fj-core</artifactId> |
66 | 72 | <version>${fj-version}</version> |
67 | 73 | </dependency> |
68 | | - |
| 74 | + |
69 | 75 | <!-- java core dependancies --> |
70 | 76 | <dependency> |
71 | 77 | <groupId>maven</groupId> |
|
86 | 92 | </dependency> |
87 | 93 |
|
88 | 94 | <dependency> |
89 | | - <groupId>org.apache.poi</groupId> |
90 | | - <artifactId>poi</artifactId> |
91 | | - <version>${poi-version}</version> |
| 95 | + <groupId>org.apache.poi</groupId> |
| 96 | + <artifactId>poi</artifactId> |
| 97 | + <version>${poi-version}</version> |
92 | 98 | </dependency> |
93 | 99 |
|
94 | 100 | <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml --> |
95 | 101 | <dependency> |
96 | | - <groupId>org.apache.poi</groupId> |
97 | | - <artifactId>poi-ooxml</artifactId> |
98 | | - <version>${poi-version}</version> |
| 102 | + <groupId>org.apache.poi</groupId> |
| 103 | + <artifactId>poi-ooxml</artifactId> |
99 | 104 | </dependency> |
100 | 105 |
|
101 | | - <dependency> |
102 | | - <groupId>org.hsqldb</groupId> |
103 | | - <artifactId>hsqldb</artifactId> |
104 | | - <version>2.3.4</version> |
105 | | - <scope>test</scope> |
106 | | - </dependency> |
| 106 | + <dependency> |
| 107 | + <groupId>org.hsqldb</groupId> |
| 108 | + <artifactId>hsqldb</artifactId> |
| 109 | + <scope>test</scope> |
| 110 | + </dependency> |
107 | 111 |
|
108 | 112 | <dependency> |
109 | 113 | <groupId>junit</groupId> |
110 | 114 | <artifactId>junit</artifactId> |
111 | | - <version>4.13.1</version> |
112 | 115 | <scope>test</scope> |
113 | 116 | </dependency> |
114 | 117 |
|
115 | 118 | </dependencies> |
116 | 119 |
|
117 | | - <build> |
118 | | - |
119 | | - <plugins> |
120 | | - |
121 | | - <plugin> |
122 | | - <groupId>org.apache.maven.plugins</groupId> |
123 | | - <artifactId>maven-source-plugin</artifactId> |
124 | | - <version>3.0.1</version> |
125 | | - <executions> |
126 | | - <execution> |
127 | | - <id>attach-sources</id> |
128 | | - <goals> |
129 | | - <goal>jar</goal> |
130 | | - </goals> |
131 | | - </execution> |
132 | | - </executions> |
133 | | - </plugin> |
134 | | - <plugin> |
135 | | - <groupId>org.apache.maven.plugins</groupId> |
136 | | - <artifactId>maven-javadoc-plugin</artifactId> |
137 | | - <version>2.10.4</version> |
138 | | - <configuration> |
139 | | - <stylesheetfile>src/main/javadoc/stylesheet.css</stylesheetfile> |
140 | | - </configuration> |
141 | | - <executions> |
142 | | - <execution> |
143 | | - <id>attach-javadocs</id> |
144 | | - <goals> |
145 | | - <goal>jar</goal> |
146 | | - </goals> |
147 | | - </execution> |
148 | | - </executions> |
149 | | - </plugin> |
150 | | - |
151 | | - </plugins> |
152 | | - |
153 | | - </build> |
154 | | - |
155 | 120 | <profiles> |
156 | 121 |
|
157 | | - <profile> |
158 | | - <id>full</id> |
159 | | - <build> |
160 | | - <pluginManagement> |
161 | | - <plugins> |
162 | | - <plugin> |
163 | | - <groupId>org.apache.maven.plugins</groupId> |
164 | | - <artifactId>maven-source-plugin</artifactId> |
165 | | - <version>3.0.1</version> |
166 | | - </plugin> |
167 | | - <plugin> |
168 | | - <groupId>org.apache.maven.plugins</groupId> |
169 | | - <artifactId>maven-javadoc-plugin</artifactId> |
170 | | - <version>2.10.4</version> |
171 | | - </plugin> |
172 | | - </plugins> |
173 | | - </pluginManagement> |
174 | | - </build> |
175 | | - </profile> |
176 | | - |
177 | | - <profile> |
178 | | - <id>doRelease</id> |
179 | | - <build> |
180 | | - <plugins> |
181 | | - <plugin> |
182 | | - <groupId>org.sonatype.plugins</groupId> |
183 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
184 | | - <version>1.6.8</version> |
185 | | - <extensions>true</extensions> |
186 | | - <configuration> |
187 | | - <serverId>ossrh</serverId> |
188 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
189 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
190 | | - </configuration> |
191 | | - </plugin> |
192 | | - |
193 | | - <plugin> |
194 | | - <groupId>org.apache.maven.plugins</groupId> |
195 | | - <artifactId>maven-gpg-plugin</artifactId> |
196 | | - <version>1.5</version> |
197 | | - <executions> |
198 | | - <execution> |
199 | | - <id>sign-artifacts</id> |
200 | | - <phase>verify</phase> |
201 | | - <goals> |
202 | | - <goal>sign</goal> |
203 | | - </goals> |
204 | | - </execution> |
205 | | - </executions> |
206 | | - </plugin> |
207 | | - |
208 | | - </plugins> |
209 | | - </build> |
210 | | - </profile> |
211 | | - |
212 | 122 | <profile> |
213 | 123 | <id>singlepackage</id> |
214 | 124 | <build> |
|
225 | 135 | </manifest> |
226 | 136 | </archive> |
227 | 137 | </configuration> |
228 | | - </plugin> |
| 138 | + </plugin> |
229 | 139 | <plugin> |
230 | 140 | <groupId>org.apache.maven.plugins</groupId> |
231 | 141 | <artifactId>maven-shade-plugin</artifactId> |
|
247 | 157 | </profile> |
248 | 158 | </profiles> |
249 | 159 |
|
250 | | - <reporting> |
251 | | - <plugins> |
252 | | - <plugin> |
253 | | - <groupId>org.apache.maven.plugins</groupId> |
254 | | - <artifactId>maven-changelog-plugin</artifactId> |
255 | | - <version>2.3</version> |
256 | | - </plugin> |
257 | | - </plugins> |
258 | | - </reporting> |
259 | | - |
260 | 160 | <organization> |
261 | 161 | <url>http://www.fugerit.org</url> |
262 | 162 | <name>Fugerit</name> |
263 | 163 | </organization> |
264 | | - |
| 164 | + |
265 | 165 | </project> |
0 commit comments