File tree Expand file tree Collapse file tree 12 files changed +41
-55
lines changed
src/main/java/org/fugerit/java/daogen/sample/impl/rest/load Expand file tree Collapse file tree 12 files changed +41
-55
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"title" : " Mars (Fugerit DAOGEN A.P.I.)" ,
3
3
"name" : " Mars" ,
4
- "version" : " 1.0.0 " ,
5
- "date" : " 19 /03/2023" ,
4
+ "version" : " 1.0.1 " ,
5
+ "date" : " 26 /03/2023" ,
6
6
"organization" : {
7
7
"name" : " Fugerit Org" ,
8
8
"url" : " https://www.fugerit.org"
Original file line number Diff line number Diff line change 1
- 1.0.0 (2023-03-19)
1
+ 1.0.1 (2023-03-26)
2
+ ------------------
3
+ + update fj-bom version 1.0.0
4
+ + update fj-core version 8.0.4
5
+ + maven.compiler.release property set to '8' (so the project is still compatible with java8+) [except for quarkus playground]
6
+ + [As for the new parent version , building should be done using java11+](https://github.com/fugerit-org/fj-bom/issues/11)
7
+
8
+ 1.0.0 (2023-03-19)
2
9
------------------
3
10
+ [Dropping 0. version](https://github.com/fugerit-org/fj-lib/issues/5)
4
11
+ Parent pom set to fj-bom 0.2.3
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >org.fugerit.java</groupId >
9
9
<artifactId >fj-daogen</artifactId >
10
- <version >1.0.0 </version >
10
+ <version >1.0.1 </version >
11
11
</parent >
12
12
13
13
<name >fj-daogen-base</name >
31
31
<groupId >org.fugerit.java</groupId >
32
32
<artifactId >fj-core</artifactId >
33
33
</dependency >
34
-
35
- <!-- java core dependancies -->
36
- <dependency >
37
- <groupId >javax</groupId >
38
- <artifactId >javaee-api</artifactId >
39
- <scope >provided</scope >
40
- </dependency >
41
-
34
+
42
35
<dependency >
43
36
<groupId >commons-dbcp</groupId >
44
37
<artifactId >commons-dbcp</artifactId >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >org.fugerit.java</groupId >
9
9
<artifactId >fj-daogen</artifactId >
10
- <version >1.0.0 </version >
10
+ <version >1.0.1 </version >
11
11
</parent >
12
12
13
13
<name >fj-daogen-sample</name >
31
31
<groupId >org.fugerit.java</groupId >
32
32
<artifactId >fj-core</artifactId >
33
33
</dependency >
34
-
35
- <!-- java core dependancies -->
34
+
36
35
<dependency >
37
- <groupId >javax</groupId >
38
- <artifactId >javaee -api</artifactId >
39
- < scope >provided</ scope >
36
+ <groupId >javax.ws.rs </groupId >
37
+ <artifactId >javax.ws.rs -api</artifactId >
38
+ < version > ${javax-rs-api-version} </ version >
40
39
</dependency >
41
40
42
41
</dependencies >
Original file line number Diff line number Diff line change 1
1
package org .fugerit .java .daogen .sample .impl .rest .load ;
2
2
3
- import javax .ejb .Stateless ;
4
3
import javax .ws .rs .Path ;
5
4
6
5
// custom import start ( code above here will be overwritten )
15
14
* // custom code start ( code above here will be overwritten )
16
15
* // custom code end ( code below here will be overwritten )
17
16
*/
18
- @ Stateless
19
17
@ Path ("/address/load" )
20
18
public class LoadAddress extends LoadAddressHelper {
21
19
Original file line number Diff line number Diff line change 1
1
package org .fugerit .java .daogen .sample .impl .rest .load ;
2
2
3
- import javax .ejb .Stateless ;
4
3
import javax .ws .rs .Path ;
5
4
6
5
// custom import start ( code above here will be overwritten )
15
14
* // custom code start ( code above here will be overwritten )
16
15
* // custom code end ( code below here will be overwritten )
17
16
*/
18
- @ Stateless
19
17
@ Path ("/logdata/load" )
20
18
public class LoadLogData extends LoadLogDataHelper {
21
19
Original file line number Diff line number Diff line change 1
1
package org .fugerit .java .daogen .sample .impl .rest .load ;
2
2
3
- import javax .ejb .Stateless ;
4
3
import javax .ws .rs .Path ;
5
4
6
5
// custom import start ( code above here will be overwritten )
15
14
* // custom code start ( code above here will be overwritten )
16
15
* // custom code end ( code below here will be overwritten )
17
16
*/
18
- @ Stateless
19
17
@ Path ("/testtwofieldkey/load" )
20
18
public class LoadTestTwoFieldKey extends LoadTestTwoFieldKeyHelper {
21
19
Original file line number Diff line number Diff line change 1
1
package org .fugerit .java .daogen .sample .impl .rest .load ;
2
2
3
- import javax .ejb .Stateless ;
4
3
import javax .ws .rs .Path ;
5
4
6
5
// custom import start ( code above here will be overwritten )
15
14
* // custom code start ( code above here will be overwritten )
16
15
* // custom code end ( code below here will be overwritten )
17
16
*/
18
- @ Stateless
19
17
@ Path ("/upload/load" )
20
18
public class LoadUpload extends LoadUploadHelper {
21
19
Original file line number Diff line number Diff line change 1
1
package org .fugerit .java .daogen .sample .impl .rest .load ;
2
2
3
- import javax .ejb .Stateless ;
4
3
import javax .ws .rs .Path ;
5
4
6
5
// custom import start ( code above here will be overwritten )
15
14
* // custom code start ( code above here will be overwritten )
16
15
* // custom code end ( code below here will be overwritten )
17
16
*/
18
- @ Stateless
19
17
@ Path ("/user/load" )
20
18
public class LoadUser extends LoadUserHelper {
21
19
Original file line number Diff line number Diff line change 1
1
package org .fugerit .java .daogen .sample .impl .rest .load ;
2
2
3
- import javax .ejb .Stateless ;
4
3
import javax .ws .rs .Path ;
5
4
6
5
// custom import start ( code above here will be overwritten )
15
14
* // custom code start ( code above here will be overwritten )
16
15
* // custom code end ( code below here will be overwritten )
17
16
*/
18
- @ Stateless
19
17
@ Path ("/userdata/load" )
20
18
public class LoadUserData extends LoadUserDataHelper {
21
19
You can’t perform that action at this time.
0 commit comments