Commit 921219d327a0d75cf17539a7d067d7071b7dd625
1 parent
4122fe9f
Exists in
master
Ajuste no nome da pasta
Showing
14 changed files
with
37 additions
and
37 deletions
Show diff stats
archetype/pom.xml
| ... | ... | @@ -45,7 +45,7 @@ |
| 45 | 45 | <groupId>br.gov.frameworkdemoiselle</groupId> |
| 46 | 46 | <artifactId>demoiselle-parent</artifactId> |
| 47 | 47 | <version>2.2.1-SNAPSHOT</version> |
| 48 | - <relativePath>../parent/root/pom.xml</relativePath> | |
| 48 | + <relativePath>../parent/framework/pom.xml</relativePath> | |
| 49 | 49 | </parent> |
| 50 | 50 | |
| 51 | 51 | <name>Archetypes Build Aggregator</name> | ... | ... |
documentation/pom.xml
| ... | ... | @@ -45,7 +45,7 @@ |
| 45 | 45 | <groupId>br.gov.frameworkdemoiselle</groupId> |
| 46 | 46 | <artifactId>demoiselle-parent</artifactId> |
| 47 | 47 | <version>2.2.1-SNAPSHOT</version> |
| 48 | - <relativePath>../parent/root/pom.xml</relativePath> | |
| 48 | + <relativePath>../parent/framework/pom.xml</relativePath> | |
| 49 | 49 | </parent> |
| 50 | 50 | |
| 51 | 51 | <name>Documentation Build Aggregator</name> | ... | ... |
impl/core/pom.xml
| ... | ... | @@ -45,7 +45,7 @@ |
| 45 | 45 | <groupId>br.gov.frameworkdemoiselle</groupId> |
| 46 | 46 | <artifactId>demoiselle-parent</artifactId> |
| 47 | 47 | <version>2.2.1-SNAPSHOT</version> |
| 48 | - <relativePath>../../parent/root/pom.xml</relativePath> | |
| 48 | + <relativePath>../../parent/framework/pom.xml</relativePath> | |
| 49 | 49 | </parent> |
| 50 | 50 | |
| 51 | 51 | <organization> | ... | ... |
impl/extension/pom.xml
| ... | ... | @@ -45,7 +45,7 @@ |
| 45 | 45 | <groupId>br.gov.frameworkdemoiselle</groupId> |
| 46 | 46 | <artifactId>demoiselle-parent</artifactId> |
| 47 | 47 | <version>2.2.1-SNAPSHOT</version> |
| 48 | - <relativePath>../../parent/root/pom.xml</relativePath> | |
| 48 | + <relativePath>../../parent/framework/pom.xml</relativePath> | |
| 49 | 49 | </parent> |
| 50 | 50 | |
| 51 | 51 | <name>Extensions Build Aggregator</name> | ... | ... |
impl/pom.xml
| ... | ... | @@ -45,7 +45,7 @@ |
| 45 | 45 | <groupId>br.gov.frameworkdemoiselle</groupId> |
| 46 | 46 | <artifactId>demoiselle-parent</artifactId> |
| 47 | 47 | <version>2.2.1-SNAPSHOT</version> |
| 48 | - <relativePath>../parent/root/pom.xml</relativePath> | |
| 48 | + <relativePath>../parent/framework/pom.xml</relativePath> | |
| 49 | 49 | </parent> |
| 50 | 50 | |
| 51 | 51 | <name>Implementations Build Aggregator</name> | ... | ... |
parent/archetype/pom.xml
| ... | ... | @@ -45,7 +45,7 @@ |
| 45 | 45 | <groupId>br.gov.frameworkdemoiselle</groupId> |
| 46 | 46 | <artifactId>demoiselle-parent</artifactId> |
| 47 | 47 | <version>2.2.1-SNAPSHOT</version> |
| 48 | - <relativePath>../root/pom.xml</relativePath> | |
| 48 | + <relativePath>../framework/pom.xml</relativePath> | |
| 49 | 49 | </parent> |
| 50 | 50 | |
| 51 | 51 | <name>Archetype Parent</name> | ... | ... |
parent/extension/pom.xml
| ... | ... | @@ -45,7 +45,7 @@ |
| 45 | 45 | <groupId>br.gov.frameworkdemoiselle</groupId> |
| 46 | 46 | <artifactId>demoiselle-parent</artifactId> |
| 47 | 47 | <version>2.2.1-SNAPSHOT</version> |
| 48 | - <relativePath>../root/pom.xml</relativePath> | |
| 48 | + <relativePath>../framework/pom.xml</relativePath> | |
| 49 | 49 | </parent> |
| 50 | 50 | |
| 51 | 51 | <name>Extension Parent</name> | ... | ... |
| ... | ... | @@ -0,0 +1,22 @@ |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
| 3 | + | |
| 4 | + <modelVersion>4.0.0</modelVersion> | |
| 5 | + | |
| 6 | + <artifactId>demoiselle-parent</artifactId> | |
| 7 | + <version>2.2.1-SNAPSHOT</version> | |
| 8 | + <packaging>pom</packaging> | |
| 9 | + | |
| 10 | + <parent> | |
| 11 | + <groupId>br.gov.frameworkdemoiselle</groupId> | |
| 12 | + <artifactId>demoiselle-root-parent</artifactId> | |
| 13 | + <version>1-SNAPSHOT</version> | |
| 14 | + <relativePath>../../../build/parent/root/pom.xml</relativePath> | |
| 15 | + </parent> | |
| 16 | + | |
| 17 | + <name>Demoiselle Parent</name> | |
| 18 | + <description> | |
| 19 | + Contém as informações de build comum a todos os projetos do Framework Demoiselle. | |
| 20 | + Se você é usuário do framework, certamente este POM não servirá para você. | |
| 21 | + </description> | |
| 22 | +</project> | ... | ... |
parent/minimal/pom.xml
| ... | ... | @@ -45,7 +45,7 @@ |
| 45 | 45 | <groupId>br.gov.frameworkdemoiselle</groupId> |
| 46 | 46 | <artifactId>demoiselle-parent</artifactId> |
| 47 | 47 | <version>2.2.1-SNAPSHOT</version> |
| 48 | - <relativePath>../root/pom.xml</relativePath> | |
| 48 | + <relativePath>../framework/pom.xml</relativePath> | |
| 49 | 49 | </parent> |
| 50 | 50 | |
| 51 | 51 | <name>App Parent</name> | ... | ... |
parent/pom.xml
parent/root/.gitignore
parent/root/pom.xml
| ... | ... | @@ -1,22 +0,0 @@ |
| 1 | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 2 | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
| 3 | - | |
| 4 | - <modelVersion>4.0.0</modelVersion> | |
| 5 | - | |
| 6 | - <artifactId>demoiselle-parent</artifactId> | |
| 7 | - <version>2.2.1-SNAPSHOT</version> | |
| 8 | - <packaging>pom</packaging> | |
| 9 | - | |
| 10 | - <name>Demoiselle Parent</name> | |
| 11 | - <description> | |
| 12 | - Contém as informações de build comum a todos os projetos do Framework Demoiselle. | |
| 13 | - Se você é usuário do framework, certamente este POM não servirá para você. | |
| 14 | - </description> | |
| 15 | - | |
| 16 | - <parent> | |
| 17 | - <groupId>br.gov.frameworkdemoiselle</groupId> | |
| 18 | - <artifactId>demoiselle-root-parent</artifactId> | |
| 19 | - <version>1-SNAPSHOT</version> | |
| 20 | - <relativePath>../../../build/parent/root/pom.xml</relativePath> | |
| 21 | - </parent> | |
| 22 | -</project> |