Skip to content
This repository was archived by the owner on Jul 30, 2020. It is now read-only.

Commit 39c045a

Browse files
authored
Merge pull request #63 from pablo-parra/microservices
microservices archetypes
2 parents 9685e63 + a1c407b commit 39c045a

120 files changed

Lines changed: 4132 additions & 2185 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

bom/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@
2727
</scm>
2828

2929
<properties>
30-
<oasp4j.version>2.1.0</oasp4j.version>
31-
<devonfw.version>2.1.0-SNAPSHOT</devonfw.version>
32-
<spring.boot.version>1.3.3.RELEASE</spring.boot.version>
30+
<oasp4j.version>2.3.0-SNAPSHOT</oasp4j.version>
3331
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3432
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
3533
<cxf.version>3.1.6</cxf.version>

module-archetype/pom.xml

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,20 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<artifactId>devonfw</artifactId>
5+
<artifactId>ipmodule-archetype</artifactId>
66
<groupId>com.capgemini.devonfw.dev</groupId>
77
<version>dev-SNAPSHOT</version> <!-- This POM will never be released -->
88
<name>${project.artifactId}</name>
99
<description>Devon Module template created to serve as an example for new module.</description>
10+
<parent>
11+
<groupId>com.capgemini.devonfw.dev</groupId>
12+
<artifactId>devonfw</artifactId>
13+
<version>dev-SNAPSHOT</version>
14+
</parent>
1015

1116

1217
<properties>
1318
<oasp4j.version>2.1.0</oasp4j.version>
14-
<devonfw.version>2.1.0-SNAPSHOT</devonfw.version>
1519
<spring.boot.version>1.3.3.RELEASE</spring.boot.version>
1620
<spring.context.version>4.2.5.RELEASE</spring.context.version>
1721
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -36,6 +40,13 @@
3640
</modules> -->
3741

3842
<build>
43+
<resources>
44+
<resource>
45+
<directory>${basedir}/src/main/resources/</directory>
46+
<filtering>true</filtering>
47+
</resource>
48+
</resources>
49+
3950
<pluginManagement>
4051
<plugins>
4152
<plugin>
@@ -117,6 +128,18 @@
117128
<target>${java.version}</target>
118129
</configuration>
119130
</plugin>
131+
132+
<plugin>
133+
<groupId>org.apache.maven.plugins</groupId>
134+
<artifactId>maven-resources-plugin</artifactId>
135+
<configuration>
136+
<delimiters>
137+
<delimiter>^*^</delimiter>
138+
</delimiters>
139+
<useDefaultDelimiters>false</useDefaultDelimiters>
140+
</configuration>
141+
</plugin>
142+
120143
<plugin>
121144
<artifactId>maven-surefire-plugin</artifactId>
122145
<configuration>
@@ -173,7 +196,7 @@
173196
<!-- <dependency>
174197
<groupId>com.capgemini.devonfw</groupId>
175198
<artifactId>devonfw-bom</artifactId>
176-
<version>${devonfw.version}</version>
199+
<version>^devonfw.version^</version>
177200
<type>pom</type>
178201
<scope>import</scope>
179202
</dependency> -->

module-archetype/target/generated-sources/archetype/pom.xml

Lines changed: 0 additions & 32 deletions
This file was deleted.

module-archetype/target/generated-sources/archetype/src/main/resources/META-INF/maven/archetype-metadata.xml

Lines changed: 0 additions & 44 deletions
This file was deleted.

module-archetype/target/generated-sources/archetype/src/main/resources/archetype-resources/.classpath

Lines changed: 0 additions & 44 deletions
This file was deleted.

module-archetype/target/generated-sources/archetype/src/main/resources/archetype-resources/.project

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)