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

Commit 3ffd6e2

Browse files
authored
Merge pull request #86 from ssarmokadam/devon-oss
Devon oss
2 parents 9c1dac1 + 994857b commit 3ffd6e2

255 files changed

Lines changed: 694 additions & 602 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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
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>
55
<parent>
6-
<groupId>com.capgemini.devonfw.dev</groupId>
6+
<groupId>com.devonfw.dev</groupId>
77
<artifactId>devonfw</artifactId>
88
<version>dev-SNAPSHOT</version>
99
</parent>
10-
<groupId>com.capgemini.devonfw</groupId>
10+
<groupId>com.devonfw</groupId>
1111
<artifactId>devonfw-bom</artifactId>
1212
<version>${devonfw.version}</version>
1313
<name>${project.artifactId}</name>
@@ -104,26 +104,26 @@
104104

105105
<!-- Foo module -->
106106
<dependency>
107-
<groupId>com.capgemini.devonfw.modules</groupId>
107+
<groupId>com.devonfw.modules</groupId>
108108
<artifactId>devonfw-foo</artifactId>
109109
<version>1.1-SNAPSHOT</version>
110110
</dependency>
111111

112112
<!-- Winauth module -->
113113
<dependency>
114-
<groupId>com.capgemini.devonfw.modules</groupId>
114+
<groupId>com.devonfw.modules</groupId>
115115
<artifactId>devonfw-winauth</artifactId>
116116
<version>1.1-SNAPSHOT</version>
117117
</dependency>
118118

119119
<!-- Reporting module -->
120120
<dependency>
121-
<groupId>com.capgemini.devonfw.modules</groupId>
121+
<groupId>com.devonfw.modules</groupId>
122122
<artifactId>devonfw-reporting</artifactId>
123123
<version>1.1-SNAPSHOT</version>
124124
</dependency>
125125

126126
</dependencies>
127127
</dependencyManagement>
128-
128+
129129
</project>

module-archetype/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
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>
55
<artifactId>ipmodule-archetype</artifactId>
6-
<groupId>com.capgemini.devonfw.dev</groupId>
6+
<groupId>com.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>
1010
<parent>
11-
<groupId>com.capgemini.devonfw.dev</groupId>
11+
<groupId>com.devonfw.dev</groupId>
1212
<artifactId>devonfw</artifactId>
1313
<version>dev-SNAPSHOT</version>
1414
</parent>
@@ -194,7 +194,7 @@
194194
</dependency>
195195
<!-- BOM of Devon -->
196196
<!-- <dependency>
197-
<groupId>com.capgemini.devonfw</groupId>
197+
<groupId>com.devonfw</groupId>
198198
<artifactId>devonfw-bom</artifactId>
199199
<version>^devonfw.version^</version>
200200
<type>pom</type>

module-archetype/src/main/java/com/capgemini/devonfw/module/moduleconfig/common/SpringBootModule.java renamed to module-archetype/src/main/java/com/devonfw/module/moduleconfig/common/SpringBootModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
******************************************************************************/
16-
package com.capgemini.devonfw.module.moduleconfig.common;
16+
package com.devonfw.module.moduleconfig.common;
1717

1818
import org.springframework.boot.SpringApplication;
1919
import org.springframework.boot.autoconfigure.SpringBootApplication;

module-archetype/src/main/java/com/capgemini/devonfw/module/moduleconfig/common/api/ModuleConfig.java renamed to module-archetype/src/main/java/com/devonfw/module/moduleconfig/common/api/ModuleConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
******************************************************************************/
16-
package com.capgemini.devonfw.module.moduleconfig.common.api;
16+
package com.devonfw.module.moduleconfig.common.api;
1717

1818
import java.util.Map;
1919

module-archetype/src/main/java/com/capgemini/devonfw/module/moduleconfig/common/impl/ModuleConfigImpl.java renamed to module-archetype/src/main/java/com/devonfw/module/moduleconfig/common/impl/ModuleConfigImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
******************************************************************************/
16-
package com.capgemini.devonfw.module.moduleconfig.common.impl;
16+
package com.devonfw.module.moduleconfig.common.impl;
1717

1818
import java.util.Map;
1919

2020
import javax.inject.Inject;
2121
import javax.inject.Named;
2222

23-
import com.capgemini.devonfw.module.moduleconfig.common.api.ModuleConfig;
23+
import com.devonfw.module.moduleconfig.common.api.ModuleConfig;
2424

2525
/**
2626
* Basic implementation of the {@link ModuleConfig} interface. returns configured property values without changes

module-archetype/src/main/java/com/capgemini/devonfw/module/moduleconfig/common/impl/ModuleConfigProperties.java renamed to module-archetype/src/main/java/com/devonfw/module/moduleconfig/common/impl/ModuleConfigProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
******************************************************************************/
16-
package com.capgemini.devonfw.module.moduleconfig.common.impl;
16+
package com.devonfw.module.moduleconfig.common.impl;
1717

1818
import java.util.HashMap;
1919

module-archetype/src/main/java/com/capgemini/devonfw/module/moduleconfig/common/impl/UppercaseModuleConfigImpl.java renamed to module-archetype/src/main/java/com/devonfw/module/moduleconfig/common/impl/UppercaseModuleConfigImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
******************************************************************************/
16-
package com.capgemini.devonfw.module.moduleconfig.common.impl;
16+
package com.devonfw.module.moduleconfig.common.impl;
1717

1818
import java.util.HashMap;
1919
import java.util.Map;
2020

2121
import javax.inject.Inject;
2222
import javax.inject.Named;
2323

24-
import com.capgemini.devonfw.module.moduleconfig.common.api.ModuleConfig;
24+
import com.devonfw.module.moduleconfig.common.api.ModuleConfig;
2525

2626
/**
2727
* 'Advanced' implementation of the {@link ModuleConfig} interface. which changes to uppercase all configured property string

module-archetype/src/test/java/com/capgemini/devonfw/module/moduleconfig/base/ModuleConfigTest.java renamed to module-archetype/src/test/java/com/devonfw/module/moduleconfig/base/ModuleConfigTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
******************************************************************************/
16-
package com.capgemini.devonfw.module.moduleconfig.base;
16+
package com.devonfw.module.moduleconfig.base;
1717

1818
import java.util.Map;
1919

@@ -25,8 +25,8 @@
2525
import org.springframework.boot.test.SpringApplicationConfiguration;
2626
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
2727

28-
import com.capgemini.devonfw.module.moduleconfig.common.SpringBootModule;
29-
import com.capgemini.devonfw.module.moduleconfig.common.api.ModuleConfig;
28+
import com.devonfw.module.moduleconfig.common.SpringBootModule;
29+
import com.devonfw.module.moduleconfig.common.api.ModuleConfig;
3030

3131
import io.oasp.module.test.common.base.ComponentTest;
3232

modules/SpringData/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
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
<parent>
5-
<groupId>com.capgemini.devonfw.dev</groupId>
5+
<groupId>com.devonfw.dev</groupId>
66
<artifactId>devonfw-modules</artifactId>
77
<version>dev-SNAPSHOT</version>
88
</parent>
9-
<groupId>com.capgemini.devonfw.modules</groupId>
9+
<groupId>com.devonfw.modules</groupId>
1010
<artifactId>devonfw-SpringData</artifactId>
1111
<version>2.1.0-SNAPSHOT</version>
1212
<name>devonfw-SpringData</name>

modules/SpringData/src/main/java/com/capgemini/devonfw/module/common/GenericRepository.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
******************************************************************************/
16-
package com.capgemini.devonfw.module.common;
16+
package com.devonfw.module.common;
1717

1818
import java.io.Serializable;
1919

0 commit comments

Comments
 (0)