création dun parent pour la console d'administration pour les futurs développement

This commit is contained in:
Nicolas Héron 2018-11-07 13:40:04 +01:00
commit 7e7bf4f631
36 changed files with 40 additions and 6 deletions

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View file

@ -3,7 +3,7 @@
xmlns="http://maven.apache.org/POM/4.0.0" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <parent>
<artifactId>pymma-jbpm-platform-parent</artifactId> <artifactId>drools-framework-admin-console-parent</artifactId>
<groupId>com.pymmasoftware.jbpm</groupId> <groupId>com.pymmasoftware.jbpm</groupId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
</parent> </parent>
@ -85,11 +85,11 @@
<artifactId>jackson-annotations</artifactId> <artifactId>jackson-annotations</artifactId>
<version>2.9.4</version> <version>2.9.4</version>
</dependency> </dependency>
<dependency> <!--dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId> <artifactId>spring-context</artifactId>
<version>4.3.3.RELEASE</version> <version>4.3.6.Release</version>
</dependency> </dependency-->
<!--dependency> <!--dependency>
<groupId>com.fasterxml.jackson.core</groupId> <groupId>com.fasterxml.jackson.core</groupId>

View file

@ -2,7 +2,9 @@ server.port=${port:8200}
kie-wb.baseurl=http://localhost:8080/kie-wb/rest kie-wb.baseurl=http://localhost:8080/kie-wb/rest
kie-wb.username=admin kie-wb.username=admin
kie-wb.password=admin kie-wb.password=admin
kie-wb.kieserverUrl=http://localhost:10080/kie-server/services/rest/server #kie-wb.kieserverUrl=http://localhost:10080/kie-server/services/rest/server
kie-wb.kieserverUrl=http://localhost:20080/services/rest/server
kie-wb.kieserverUserName=kieserver kie-wb.kieserverUserName=kieserver
kie-wb.kieserverPassword=kieserver1! kie-wb.kieserverPassword=kieserver1!
gitlab.url=https://gitlab.pymma-software.com/api/v4 gitlab.url=https://gitlab.pymma-software.com/api/v4

View file

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>pymma-jbpm-platform-parent</artifactId>
<groupId>com.pymmasoftware.jbpm</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<artifactId>drools-framework-admin-console-parent</artifactId>
<modules>
<module>drools-framework-admin-console</module>
</modules>
</project>

View file

@ -16,9 +16,9 @@
<module>drools-framework-kie-server-parent</module> <module>drools-framework-kie-server-parent</module>
<module>kie-server</module> <module>kie-server</module>
<module>drools-framework-examples</module> <module>drools-framework-examples</module>
<module>drools-framework-admin-console</module>
<module>drools-framework-kie-wb-parent</module> <module>drools-framework-kie-wb-parent</module>
<module>drools-framework-thorntail-kie-server-parent</module> <module>drools-framework-thorntail-kie-server-parent</module>
<module>drools-framework-admin-console-parent</module>
</modules> </modules>
<packaging>pom</packaging> <packaging>pom</packaging>