Commit 921219d327a0d75cf17539a7d067d7071b7dd625

Authored by Cleverson Sacramento
1 parent 4122fe9f
Exists in master

Ajuste no nome da pasta

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>
... ...
parent/framework/.gitignore 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +/target
  2 +/.project
  3 +/.classpath
  4 +/.settings
  5 +/.externalToolBuilders
... ...
parent/framework/pom.xml 0 → 100644
... ... @@ -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
... ... @@ -52,7 +52,7 @@
52 52 </description>
53 53  
54 54 <modules>
55   - <module>root</module>
  55 + <module>framework</module>
56 56 <module>archetype</module>
57 57 <module>minimal</module>
58 58 <module>extension</module>
... ...
parent/root/.gitignore
... ... @@ -1,5 +0,0 @@
1   -/target
2   -/.project
3   -/.classpath
4   -/.settings
5   -/.externalToolBuilders
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>
pom.xml
... ... @@ -59,7 +59,7 @@
59 59 <module>impl</module>
60 60 <module>parent</module>
61 61 <module>archetype</module>
62   - <module>doc</module>
  62 + <module>documentation</module>
63 63 </modules>
64 64  
65 65 <build>
... ...