Skip to content

Commit b872c87

Browse files
committed
first init
0 parents  commit b872c87

File tree

11 files changed

+280
-0
lines changed

11 files changed

+280
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.idea
2+
*.class
3+
target
4+
*.tar.gz
5+
*.tgz
6+
*.zip
7+
*.rar
8+
*.7z

pom.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.feego.spring</groupId>
8+
<artifactId>spring-boot-bean-aggregate</artifactId>
9+
<version>1.0.0-SNAPSHOT</version>
10+
<modules>
11+
<module>spring-boot-bean-aggregate-core</module>
12+
<module>spring-boot-bean-aggregate-autoconfigure</module>
13+
<module>spring-boot-bean-aggregate-example</module>
14+
</modules>
15+
<packaging>pom</packaging>
16+
17+
<name>spring-boot-bean-aggregate</name>
18+
19+
<properties>
20+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21+
<java.version>1.8</java.version>
22+
<maven.compiler.source>${java.version}</maven.compiler.source>
23+
<maven.compiler.target>${java.version}</maven.compiler.target>
24+
</properties>
25+
26+
<dependencies>
27+
<dependency>
28+
<groupId>junit</groupId>
29+
<artifactId>junit</artifactId>
30+
<version>4.12</version>
31+
<scope>test</scope>
32+
</dependency>
33+
</dependencies>
34+
35+
<build>
36+
37+
</build>
38+
</project>
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>spring-boot-bean-aggregate</artifactId>
7+
<groupId>org.feego.spring</groupId>
8+
<version>1.0.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>spring-boot-bean-aggregate-autoconfigure</artifactId>
13+
14+
<name>spring-boot-bean-aggregate-autoconfigure</name>
15+
<!-- FIXME change it to the project's website -->
16+
<url>http://www.example.com</url>
17+
18+
<properties>
19+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20+
<maven.compiler.source>1.7</maven.compiler.source>
21+
<maven.compiler.target>1.7</maven.compiler.target>
22+
</properties>
23+
24+
<dependencies>
25+
<dependency>
26+
<groupId>junit</groupId>
27+
<artifactId>junit</artifactId>
28+
<version>4.11</version>
29+
<scope>test</scope>
30+
</dependency>
31+
</dependencies>
32+
33+
<build>
34+
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
35+
<plugins>
36+
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
37+
<plugin>
38+
<artifactId>maven-clean-plugin</artifactId>
39+
<version>3.1.0</version>
40+
</plugin>
41+
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
42+
<plugin>
43+
<artifactId>maven-resources-plugin</artifactId>
44+
<version>3.0.2</version>
45+
</plugin>
46+
<plugin>
47+
<artifactId>maven-compiler-plugin</artifactId>
48+
<version>3.8.0</version>
49+
</plugin>
50+
<plugin>
51+
<artifactId>maven-surefire-plugin</artifactId>
52+
<version>2.22.1</version>
53+
</plugin>
54+
<plugin>
55+
<artifactId>maven-jar-plugin</artifactId>
56+
<version>3.0.2</version>
57+
</plugin>
58+
<plugin>
59+
<artifactId>maven-install-plugin</artifactId>
60+
<version>2.5.2</version>
61+
</plugin>
62+
<plugin>
63+
<artifactId>maven-deploy-plugin</artifactId>
64+
<version>2.8.2</version>
65+
</plugin>
66+
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
67+
<plugin>
68+
<artifactId>maven-site-plugin</artifactId>
69+
<version>3.7.1</version>
70+
</plugin>
71+
<plugin>
72+
<artifactId>maven-project-info-reports-plugin</artifactId>
73+
<version>3.0.0</version>
74+
</plugin>
75+
</plugins>
76+
</pluginManagement>
77+
</build>
78+
</project>

spring-boot-bean-aggregate-autoconfigure/src/main/java/org/feego/spring/.gitignore

Whitespace-only changes.

spring-boot-bean-aggregate-autoconfigure/src/test/java/org/feego/spring/.gitignore

Whitespace-only changes.
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>spring-boot-bean-aggregate</artifactId>
7+
<groupId>org.feego.spring</groupId>
8+
<version>1.0.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>spring-boot-bean-aggregate-core</artifactId>
13+
14+
<name>spring-boot-bean-aggregate-core</name>
15+
<!-- FIXME change it to the project's website -->
16+
<url>http://www.example.com</url>
17+
18+
<properties>
19+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20+
<maven.compiler.source>1.7</maven.compiler.source>
21+
<maven.compiler.target>1.7</maven.compiler.target>
22+
</properties>
23+
24+
<dependencies>
25+
<dependency>
26+
<groupId>junit</groupId>
27+
<artifactId>junit</artifactId>
28+
<version>4.11</version>
29+
<scope>test</scope>
30+
</dependency>
31+
</dependencies>
32+
33+
<build>
34+
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
35+
<plugins>
36+
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
37+
<plugin>
38+
<artifactId>maven-clean-plugin</artifactId>
39+
<version>3.1.0</version>
40+
</plugin>
41+
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
42+
<plugin>
43+
<artifactId>maven-resources-plugin</artifactId>
44+
<version>3.0.2</version>
45+
</plugin>
46+
<plugin>
47+
<artifactId>maven-compiler-plugin</artifactId>
48+
<version>3.8.0</version>
49+
</plugin>
50+
<plugin>
51+
<artifactId>maven-surefire-plugin</artifactId>
52+
<version>2.22.1</version>
53+
</plugin>
54+
<plugin>
55+
<artifactId>maven-jar-plugin</artifactId>
56+
<version>3.0.2</version>
57+
</plugin>
58+
<plugin>
59+
<artifactId>maven-install-plugin</artifactId>
60+
<version>2.5.2</version>
61+
</plugin>
62+
<plugin>
63+
<artifactId>maven-deploy-plugin</artifactId>
64+
<version>2.8.2</version>
65+
</plugin>
66+
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
67+
<plugin>
68+
<artifactId>maven-site-plugin</artifactId>
69+
<version>3.7.1</version>
70+
</plugin>
71+
<plugin>
72+
<artifactId>maven-project-info-reports-plugin</artifactId>
73+
<version>3.0.0</version>
74+
</plugin>
75+
</plugins>
76+
</pluginManagement>
77+
</build>
78+
</project>

spring-boot-bean-aggregate-core/src/main/java/org/feego/spring/.gitignore

Whitespace-only changes.

spring-boot-bean-aggregate-core/src/test/java/org/feego/spring/.gitignore

Whitespace-only changes.
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>spring-boot-bean-aggregate</artifactId>
7+
<groupId>org.feego.spring</groupId>
8+
<version>1.0.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>spring-boot-bean-aggregate-example</artifactId>
13+
14+
<name>spring-boot-bean-aggregate-example</name>
15+
<!-- FIXME change it to the project's website -->
16+
<url>http://www.example.com</url>
17+
18+
<properties>
19+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20+
<maven.compiler.source>1.7</maven.compiler.source>
21+
<maven.compiler.target>1.7</maven.compiler.target>
22+
</properties>
23+
24+
<dependencies>
25+
<dependency>
26+
<groupId>junit</groupId>
27+
<artifactId>junit</artifactId>
28+
<version>4.11</version>
29+
<scope>test</scope>
30+
</dependency>
31+
</dependencies>
32+
33+
<build>
34+
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
35+
<plugins>
36+
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
37+
<plugin>
38+
<artifactId>maven-clean-plugin</artifactId>
39+
<version>3.1.0</version>
40+
</plugin>
41+
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
42+
<plugin>
43+
<artifactId>maven-resources-plugin</artifactId>
44+
<version>3.0.2</version>
45+
</plugin>
46+
<plugin>
47+
<artifactId>maven-compiler-plugin</artifactId>
48+
<version>3.8.0</version>
49+
</plugin>
50+
<plugin>
51+
<artifactId>maven-surefire-plugin</artifactId>
52+
<version>2.22.1</version>
53+
</plugin>
54+
<plugin>
55+
<artifactId>maven-jar-plugin</artifactId>
56+
<version>3.0.2</version>
57+
</plugin>
58+
<plugin>
59+
<artifactId>maven-install-plugin</artifactId>
60+
<version>2.5.2</version>
61+
</plugin>
62+
<plugin>
63+
<artifactId>maven-deploy-plugin</artifactId>
64+
<version>2.8.2</version>
65+
</plugin>
66+
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
67+
<plugin>
68+
<artifactId>maven-site-plugin</artifactId>
69+
<version>3.7.1</version>
70+
</plugin>
71+
<plugin>
72+
<artifactId>maven-project-info-reports-plugin</artifactId>
73+
<version>3.0.0</version>
74+
</plugin>
75+
</plugins>
76+
</pluginManagement>
77+
</build>
78+
</project>

spring-boot-bean-aggregate-example/src/main/java/org/feego/spring/.gitignore

Whitespace-only changes.

0 commit comments

Comments
 (0)