Skip to content

Commit edc89ba

Browse files
committed
✨ Create FluentForms Jersey Spring Boot Starter project
1 parent 3fc7dc6 commit edc89ba

5 files changed

Lines changed: 78 additions & 0 deletions

File tree

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com._4point.aem.fluentforms</groupId>
6+
<parent>
7+
<groupId>org.springframework.boot</groupId>
8+
<artifactId>spring-boot-starter-parent</artifactId>
9+
<version>3.5.5</version>
10+
<relativePath /> <!-- lookup parent from repository -->
11+
</parent>
12+
<artifactId>fluentforms-jersey-spring-boot-starter</artifactId>
13+
<version>0.0.4-SNAPSHOT</version>
14+
<name>FluentForms Jersey Spring Boot Starter</name>
15+
<description>Spring Boot starter for FluentForms library using Jersey</description>
16+
<properties>
17+
<java.version>17</java.version>
18+
<jasypt.spring.boot.version>3.0.5</jasypt.spring.boot.version>
19+
<jasypt.maven.plugin.version>3.0.5</jasypt.maven.plugin.version>
20+
<fluentforms.version>0.0.4-SNAPSHOT</fluentforms.version>
21+
<fluentforms-jersey-autoconfigure.version>0.0.4-SNAPSHOT</fluentforms-jersey-autoconfigure.version>
22+
</properties>
23+
24+
<distributionManagement>
25+
<repository>
26+
<id>github</id>
27+
<name>4Point Solutions FluentFormsAPI Apache Maven Packages</name>
28+
<url>https://maven.pkg.github.com/4PointSolutions/FluentFormsAPI</url>
29+
</repository>
30+
</distributionManagement>
31+
32+
<repositories>
33+
<repository>
34+
<id>github</id>
35+
<url>https://maven.pkg.github.com/4PointSolutions/*</url>
36+
<snapshots>
37+
<enabled>true</enabled>
38+
</snapshots>
39+
</repository>
40+
</repositories>
41+
42+
<dependencies>
43+
<!-- Project Dependencies -->
44+
<dependency>
45+
<groupId>org.springframework.boot</groupId>
46+
<artifactId>spring-boot-starter</artifactId>
47+
</dependency>
48+
<dependency>
49+
<groupId>com._4point.aem.fluentforms</groupId>
50+
<artifactId>fluentforms-jersey-spring-boot-autoconfigure</artifactId>
51+
<version>${fluentforms-jersey-autoconfigure.version}</version>
52+
</dependency>
53+
</dependencies>
54+
<build>
55+
<plugins>
56+
<!-- Useful in case you want to change the password or secret key
57+
for the jasypt data -->
58+
<!-- To change password or key
59+
- Navigate to directory where
60+
this pom resides
61+
- In command line execute:
62+
mvn
63+
jasypt:encrypt-value -Djasypt.encryptor.password=SECRET_KEY
64+
-Djasypt.plugin.value=VALUE_TO_BE_ENCRYPTED
65+
- SECRET_KEY is the
66+
value that is used to encrypt/decrypt
67+
- Alternatively you can
68+
download the plugin jar an execute the command from the location
69+
where the plugin jar reside
70+
-->
71+
<plugin>
72+
<groupId>com.github.ulisesbocchio</groupId>
73+
<artifactId>jasypt-maven-plugin</artifactId>
74+
<version>${jasypt.maven.plugin.version}</version>
75+
</plugin>
76+
</plugins>
77+
</build>
78+
</project>

spring/fluentforms-jersey-spring-boot-starter/src/main/java/.gitignore

Whitespace-only changes.

spring/fluentforms-jersey-spring-boot-starter/src/main/resources/.gitignore

Whitespace-only changes.

spring/fluentforms-jersey-spring-boot-starter/src/test/java/.gitignore

Whitespace-only changes.

spring/fluentforms-jersey-spring-boot-starter/src/test/resources/.gitignore

Whitespace-only changes.

0 commit comments

Comments
 (0)