Skip to content

Commit

Permalink
Rebalancing maven module execution order (eclipse-che#16497)
Browse files Browse the repository at this point in the history
Signed-off-by: Sergii Kabashniuk <skabashniuk@redhat.com>
  • Loading branch information
skabashnyuk committed May 6, 2020
1 parent b880e30 commit 93ba5ef
Show file tree
Hide file tree
Showing 49 changed files with 84 additions and 111 deletions.
2 changes: 1 addition & 1 deletion assembly/assembly-che-tomcat8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</parent>
<artifactId>assembly-che-tomcat8</artifactId>
<packaging>jar</packaging>
<name>Che IDE :: Assemblies Che Tomcat8</name>
<name>Che Assembly :: Assemblies Che Tomcat8</name>
<build>
<finalName>assembly-che-tomcat8</finalName>
<plugins>
Expand Down
2 changes: 1 addition & 1 deletion assembly/assembly-dashboard-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</parent>
<artifactId>assembly-dashboard-war</artifactId>
<packaging>war</packaging>
<name>Che IDE :: Dashboard Packaging</name>
<name>Che Assembly :: Dashboard war</name>
<description>Packages Dashboard application as a Java web app</description>
<inceptionYear>2018</inceptionYear>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion assembly/assembly-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</parent>
<artifactId>assembly-main</artifactId>
<packaging>pom</packaging>
<name>Che IDE :: Assemblies Tomcat</name>
<name>Che Assembly :: Assemblies Che Server Tomcat</name>
<dependencies>
<dependency>
<groupId>org.eclipse.che</groupId>
Expand Down
6 changes: 3 additions & 3 deletions assembly/assembly-root-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</parent>
<artifactId>assembly-root-war</artifactId>
<packaging>war</packaging>
<name>Che IDE :: War Packaging</name>
<name>Che Assembly :: Root war</name>
<description>Packages Che root web app</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -53,7 +53,7 @@
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-commons-logback</artifactId>
<artifactId>che-core-logback</artifactId>
<exclusions>
<exclusion>
<artifactId>che-core-api-core</artifactId>
Expand Down Expand Up @@ -105,7 +105,7 @@
<dep>net.logstash.logback:logstash-logback-encoder</dep>
<dep>ch.qos.logback:logback-classic</dep>
<dep>org.eclipse.che.core:che-core-commons-j2ee</dep>
<dep>org.eclipse.che.core:che-core-commons-logback</dep>
<dep>org.eclipse.che.core:che-core-logback</dep>
</ignoredUnusedDeclaredDependencies>
</configuration>
</execution>
Expand Down
2 changes: 1 addition & 1 deletion assembly/assembly-swagger-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</parent>
<artifactId>assembly-swagger-war</artifactId>
<packaging>war</packaging>
<name>Che IDE :: Assemblies Swagger WAR</name>
<name>Che Assembly :: Swagger war</name>
<build>
<finalName>che-swagger-ui</finalName>
<plugins>
Expand Down
2 changes: 1 addition & 1 deletion assembly/assembly-workspace-loader-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</parent>
<artifactId>assembly-workspace-loader-war</artifactId>
<packaging>war</packaging>
<name>Che Workspace Loader :: War Packaging</name>
<name>Che Assembly :: Workspace Loader war</name>
<description>Packages Che Workspace Loader application as a Java web app</description>
<inceptionYear>2018</inceptionYear>
<dependencies>
Expand Down
26 changes: 13 additions & 13 deletions assembly/assembly-wsmaster-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</parent>
<artifactId>assembly-wsmaster-war</artifactId>
<packaging>war</packaging>
<name>Che IDE :: Compiling WS Master WAR</name>
<name>Che Assembly :: WS Master war</name>
<properties>
<generated.sources.directory>${project.build.directory}/generated-sources/gen</generated.sources.directory>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -171,10 +171,6 @@
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-commons-logback</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-commons-mail</artifactId>
Expand Down Expand Up @@ -203,6 +199,10 @@
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-db-vendor-postgresql</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-logback</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-metrics-core</artifactId>
Expand All @@ -227,6 +227,10 @@
<groupId>org.eclipse.che.core</groupId>
<artifactId>wsmaster-local</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.infrastructure</groupId>
<artifactId>infrastructure-distributed</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.infrastructure</groupId>
<artifactId>infrastructure-kubernetes</artifactId>
Expand All @@ -239,6 +243,10 @@
<groupId>org.eclipse.che.infrastructure</groupId>
<artifactId>infrastructure-openshift</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.infrastructure</groupId>
<artifactId>infrastructure-permission</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.multiuser</groupId>
<artifactId>che-multiuser-api-authentication-commons</artifactId>
Expand All @@ -251,10 +259,6 @@
<groupId>org.eclipse.che.multiuser</groupId>
<artifactId>che-multiuser-api-authorization-impl</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.multiuser</groupId>
<artifactId>che-multiuser-api-jgroups</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.multiuser</groupId>
<artifactId>che-multiuser-api-organization</artifactId>
Expand Down Expand Up @@ -291,10 +295,6 @@
<groupId>org.eclipse.che.multiuser</groupId>
<artifactId>che-multiuser-permission-factory</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.multiuser</groupId>
<artifactId>che-multiuser-permission-infra-kubernetes</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.multiuser</groupId>
<artifactId>che-multiuser-permission-logger</artifactId>
Expand Down
3 changes: 1 addition & 2 deletions core/che-core-api-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</parent>
<artifactId>che-core-api-core</artifactId>
<packaging>jar</packaging>
<name>Che Core :: API :: Core</name>
<name>Che Core :: Commons :: API :: Core</name>
<properties>
<dto-generator-out-directory>${project.build.directory}/generated-sources/dto/</dto-generator-out-directory>
<findbugs.failonerror>false</findbugs.failonerror>
Expand Down Expand Up @@ -317,7 +317,6 @@
</plugin>
</plugins>
</build>

</profile>
</profiles>
</project>
2 changes: 1 addition & 1 deletion core/che-core-api-dto-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</parent>
<artifactId>che-core-api-dto-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>Che Core :: API :: DTO Maven Plugin</name>
<name>Che Core :: Commons :: API :: DTO Maven Plugin</name>
<properties>
<findbugs.failonerror>false</findbugs.failonerror>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion core/che-core-api-dto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</parent>
<artifactId>che-core-api-dto</artifactId>
<packaging>jar</packaging>
<name>Che Core :: API :: DTO</name>
<name>Che Core :: Commons :: API :: DTO</name>
<properties>
<findbugs.failonerror>false</findbugs.failonerror>
<generated.test.sources.directory>${project.build.directory}/generated-test-sources/gen</generated.test.sources.directory>
Expand Down
2 changes: 1 addition & 1 deletion core/che-core-api-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</parent>
<artifactId>che-core-api-model</artifactId>
<packaging>jar</packaging>
<name>Che Core :: API :: Model</name>
<name>Che Core :: Commons :: API :: Model</name>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/che-core-db-vendor-h2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<version>7.13.0-SNAPSHOT</version>
</parent>
<artifactId>che-core-db-vendor-h2</artifactId>
<name>Che Core :: DB :: Vendor H2</name>
<name>Che Core :: Commons :: DB :: Vendor H2</name>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/che-core-db-vendor-mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<version>7.13.0-SNAPSHOT</version>
</parent>
<artifactId>che-core-db-vendor-mysql</artifactId>
<name>Che Core :: DB :: Vendor MySQL</name>
<name>Che Core :: Commons :: DB :: Vendor MySQL</name>
<dependencies>
<dependency>
<groupId>org.eclipse.che.core</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/che-core-db-vendor-postgresql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<version>7.13.0-SNAPSHOT</version>
</parent>
<artifactId>che-core-db-vendor-postgresql</artifactId>
<name>Che Core :: DB :: Vendor PostgreSQL</name>
<name>Che Core :: Commons :: DB :: Vendor PostgreSQL</name>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/che-core-db/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<version>7.13.0-SNAPSHOT</version>
</parent>
<artifactId>che-core-db</artifactId>
<name>Che Core :: DB</name>
<name>Che Core :: Commons :: DB</name>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>che-core-commons-parent</artifactId>
<artifactId>che-core-parent</artifactId>
<groupId>org.eclipse.che.core</groupId>
<version>7.13.0-SNAPSHOT</version>
</parent>
<artifactId>che-core-commons-logback</artifactId>
<artifactId>che-core-logback</artifactId>
<packaging>jar</packaging>
<name>Che Core :: Commons :: Commons Logback</name>
<name>Che Core :: Commons :: Logback</name>
<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/che-core-metrics-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<version>7.13.0-SNAPSHOT</version>
</parent>
<artifactId>che-core-metrics-core</artifactId>
<name>Che Core :: Metrics :: Core</name>
<name>Che Core :: Commons :: Metrics :: Core</name>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/che-core-tracing-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<version>7.13.0-SNAPSHOT</version>
</parent>
<artifactId>che-core-tracing-core</artifactId>
<name>Che Core :: Tracing :: Core</name>
<name>Che Core :: Commons :: Tracing :: Core</name>
<dependencies>
<dependency>
<groupId>aopalliance</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/che-core-tracing-metrics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<version>7.13.0-SNAPSHOT</version>
</parent>
<artifactId>che-core-tracing-metrics</artifactId>
<name>Che Core :: Tracing :: Metrics</name>
<name>Che Core :: Commons :: Tracing :: Metrics</name>
<dependencies>
<dependency>
<groupId>com.google.inject</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/che-core-tracing-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<version>7.13.0-SNAPSHOT</version>
</parent>
<artifactId>che-core-tracing-web</artifactId>
<name>Che Core :: Tracing :: Web</name>
<name>Che Core :: Commons :: Tracing :: Web</name>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/che-core-typescript-dto-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</parent>
<artifactId>che-core-typescript-dto-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>Che Core :: API :: TypeScript DTO maven plugin</name>
<name>Che Core :: Commons :: API :: TypeScript DTO maven plugin</name>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down
1 change: 0 additions & 1 deletion core/commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
<modules>
<module>che-core-commons-annotations</module>
<module>che-core-commons-lang</module>
<module>che-core-commons-logback</module>
<module>che-core-commons-inject</module>
<module>che-core-commons-json</module>
<module>che-core-commons-xml</module>
Expand Down
1 change: 1 addition & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<module>che-core-db-vendor-h2</module>
<module>che-core-db-vendor-mysql</module>
<module>che-core-db-vendor-postgresql</module>
<module>che-core-logback</module>
<module>che-core-tracing-core</module>
<module>che-core-tracing-web</module>
<module>che-core-metrics-core</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>che-multiuser-api</artifactId>
<groupId>org.eclipse.che.multiuser</groupId>
<artifactId>che-infrastructures-parent</artifactId>
<groupId>org.eclipse.che.infrastructure</groupId>
<version>7.13.0-SNAPSHOT</version>
</parent>
<artifactId>che-multiuser-api-jgroups</artifactId>
<artifactId>infrastructure-distributed</artifactId>
<packaging>jar</packaging>
<name>Che Multiuser :: JGroups API Implementation</name>
<name>Infrastructure :: Distributed components</name>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>che-multiuser-permission</artifactId>
<groupId>org.eclipse.che.multiuser</groupId>
<artifactId>che-infrastructures-parent</artifactId>
<groupId>org.eclipse.che.infrastructure</groupId>
<version>7.13.0-SNAPSHOT</version>
</parent>
<artifactId>che-multiuser-permission-infra-kubernetes</artifactId>
<name>Che Multiuser :: Kubernetes Infrastructure Permissions</name>
<artifactId>infrastructure-permission</artifactId>
<name>Infrastructure :: Kubernetes Permissions</name>
<dependencies>
<dependency>
<groupId>javax.inject</groupId>
Expand Down
1 change: 0 additions & 1 deletion infrastructures/kubernetes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
<artifactId>che-infrastructures-parent</artifactId>
<groupId>org.eclipse.che.infrastructure</groupId>
<version>7.13.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>infrastructure-kubernetes</artifactId>
<name>Infrastructure :: Kubernetes</name>
Expand Down
1 change: 0 additions & 1 deletion infrastructures/openshift/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
<artifactId>che-infrastructures-parent</artifactId>
<groupId>org.eclipse.che.infrastructure</groupId>
<version>7.13.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>infrastructure-openshift</artifactId>
<name>Infrastructure :: OpenShift</name>
Expand Down
4 changes: 3 additions & 1 deletion infrastructures/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,12 @@
<groupId>org.eclipse.che.infrastructure</groupId>
<artifactId>che-infrastructures-parent</artifactId>
<packaging>pom</packaging>
<name>Che Infrastructures Parent</name>
<name>Infrastructure :: Infrastructures Parent</name>
<modules>
<module>openshift</module>
<module>kubernetes</module>
<module>infrastructure-metrics</module>
<module>infrastructure-distributed</module>
<module>infrastructure-permission</module>
</modules>
</project>
1 change: 0 additions & 1 deletion multiuser/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
<module>che-multiuser-api-resource</module>
<module>che-multiuser-api-organization-shared</module>
<module>che-multiuser-api-organization</module>
<module>che-multiuser-api-jgroups</module>
<module>che-multiuser-api-workspace-activity</module>
</modules>
</project>
2 changes: 1 addition & 1 deletion multiuser/keycloak/che-multiuser-keycloak-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-commons-logback</artifactId>
<artifactId>che-core-logback</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.multiuser</groupId>
Expand Down
1 change: 0 additions & 1 deletion multiuser/permission/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,5 @@
<module>che-multiuser-permission-system</module>
<module>che-multiuser-permission-resource</module>
<module>che-multiuser-permission-logger</module>
<module>che-multiuser-permission-infra-kubernetes</module>
</modules>
</project>
Loading

0 comments on commit 93ba5ef

Please sign in to comment.