Skip to content

Commit 6733f1b

Browse files
committed
0.4.4 (2022-11-23)
+ Changed fj-core version to 0.8.0 + Parent pom set to fj-bom 0.2.2 + Dependancy versions revised
1 parent edab239 commit 6733f1b

File tree

6 files changed

+21
-30
lines changed

6 files changed

+21
-30
lines changed

docgen/parameters.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"title" : "Mars (Fugerit DAOGEN A.P.I.)",
33
"name": "Mars",
4-
"version" : "0.4.3",
5-
"date" : "07/11/2022",
4+
"version" : "0.4.4",
5+
"date" : "23/11/2022",
66
"organization" : {
77
"name" : "Fugerit Org",
88
"url" : "https://www.fugerit.org"

docgen/release-notes.txt

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
0.4.3 (2022-11-07)
1+
0.4.4 (2022-11-23)
2+
------------------
3+
+ Changed fj-core version to 0.8.0
4+
+ Parent pom set to fj-bom 0.2.2
5+
+ Dependancy versions revised
6+
7+
0.4.3 (2022-11-07)
28
------------------
39
+ Changed version format to MAJOR.MINOR.PATH
410
+ Changed fj-core version to 0.7.9

fj-daogen-base/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-daogen</artifactId>
10-
<version>0.4.3</version>
10+
<version>0.4.4</version>
1111
</parent>
1212

1313
<name>fj-daogen-base</name>

fj-daogen-sample/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-daogen</artifactId>
10-
<version>0.4.3</version>
10+
<version>0.4.4</version>
1111
</parent>
1212

1313
<name>fj-daogen-sample</name>

fj-daogen-tool/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fugerit.java</groupId>
99
<artifactId>fj-daogen</artifactId>
10-
<version>0.4.3</version>
10+
<version>0.4.4</version>
1111
</parent>
1212

1313
<name>fj-daogen-tool</name>

pom.xml

+9-24
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>org.fugerit.java</groupId>
5+
<parent>
6+
<groupId>org.fugerit.java</groupId>
7+
<artifactId>fj-bom</artifactId>
8+
<version>0.2.2</version>
9+
<relativePath></relativePath>
10+
</parent>
11+
612
<artifactId>fj-daogen</artifactId>
713

8-
<version>0.4.3</version>
14+
<version>0.4.4</version>
915
<packaging>pom</packaging>
1016

1117
<name>fj-daogen</name>
@@ -19,23 +25,7 @@
1925
<maven.compiler.source>${java-version-compliance}</maven.compiler.source>
2026
<maven.compiler.target>${java-version-compliance}</maven.compiler.target>
2127
<maven.test.skip>true</maven.test.skip>
22-
<fj-version>0.7.9</fj-version>
23-
<!-- maven plugin versions -->
24-
<mvn-source-version>3.2.1</mvn-source-version>
25-
<mvn-javadoc-version>3.2.0</mvn-javadoc-version>
26-
<mvn-jar-version>3.2.0</mvn-jar-version>
27-
<mvn-shade-version>3.2.2</mvn-shade-version>
28-
<!-- logging dependancies -->
29-
<slf4j-version>1.7.30</slf4j-version>
30-
<!-- release dependancies -->
31-
<nexus-version>1.6.8</nexus-version>
32-
<mvn-gpg-version>1.6</mvn-gpg-version>
33-
<!-- testing dependancies -->
34-
<poi-version>4.1.2</poi-version>
35-
<dbcp-version>1.4</dbcp-version>
36-
<log4j-slf4j-impl-version>2.13.1</log4j-slf4j-impl-version>
37-
<junit-version>4.13.1</junit-version>
38-
<hsqldb-version>2.5.0</hsqldb-version>
28+
<fj-version>0.8.0</fj-version>
3929
</properties>
4030

4131
<licenses>
@@ -160,32 +150,27 @@
160150
<dependency>
161151
<groupId>org.slf4j</groupId>
162152
<artifactId>slf4j-api</artifactId>
163-
<version>${slf4j-version}</version>
164153
<scope>compile</scope>
165154
</dependency>
166155

167156
<dependency>
168157
<groupId>org.slf4j</groupId>
169158
<artifactId>jcl-over-slf4j</artifactId>
170-
<version>${slf4j-version}</version>
171159
<scope>test</scope>
172160
</dependency>
173161
<dependency>
174162
<groupId>org.apache.logging.log4j</groupId>
175163
<artifactId>log4j-slf4j-impl</artifactId>
176-
<version>${log4j-slf4j-impl-version}</version>
177164
<scope>test</scope>
178165
</dependency>
179166
<dependency>
180167
<groupId>org.hsqldb</groupId>
181168
<artifactId>hsqldb</artifactId>
182-
<version>${hsqldb-version}</version>
183169
<scope>test</scope>
184170
</dependency>
185171
<dependency>
186172
<groupId>junit</groupId>
187173
<artifactId>junit</artifactId>
188-
<version>${junit-version}</version>
189174
<scope>test</scope>
190175
</dependency>
191176

0 commit comments

Comments
 (0)