Commit d03f069cfeea202543c3e34a84cc633ecdd2adfa
1 parent
1fb99e99
parents
Showing
12 changed files
with
257 additions
and
306 deletions
Show diff stats
.gitignore
demoiselle-core/pom.xml
| ... | ... | @@ -2,7 +2,7 @@ |
| 2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | - <groupId>org.demoiselle.jee</groupId> | |
| 5 | + | |
| 6 | 6 | <artifactId>demoiselle-core</artifactId> |
| 7 | 7 | <version>3.0.0-SNAPSHOT</version> |
| 8 | 8 | <packaging>jar</packaging> |
| ... | ... | @@ -11,25 +11,23 @@ |
| 11 | 11 | <description> |
| 12 | 12 | Contém funcionalidades comuns a todos os módulos framework. |
| 13 | 13 | </description> |
| 14 | + | |
| 15 | + <parent> | |
| 16 | + <groupId>org.demoiselle.jee</groupId> | |
| 17 | + <artifactId>demoiselle-parent</artifactId> | |
| 18 | + <version>3.0.0-BETA1-SNAPSHOT</version> | |
| 19 | + <relativePath>../demoiselle-parent</relativePath> | |
| 20 | + </parent> | |
| 14 | 21 | |
| 15 | - <url>http://demoiselle.org</url> | |
| 16 | - | |
| 17 | - | |
| 18 | - <properties> | |
| 19 | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| 20 | - <maven.compiler.source>1.8</maven.compiler.source> | |
| 21 | - <maven.compiler.target>1.8</maven.compiler.target> | |
| 22 | - </properties> | |
| 23 | 22 | <dependencies> |
| 24 | 23 | <dependency> |
| 25 | 24 | <groupId>javax</groupId> |
| 26 | 25 | <artifactId>javaee-web-api</artifactId> |
| 27 | - <version>7.0</version> | |
| 28 | 26 | </dependency> |
| 27 | + | |
| 29 | 28 | <dependency> |
| 30 | 29 | <groupId>javax.enterprise</groupId> |
| 31 | 30 | <artifactId>cdi-api</artifactId> |
| 32 | - <version>1.2</version> | |
| 33 | 31 | </dependency> |
| 34 | 32 | |
| 35 | 33 | <!-- Configuration/Messages --> |
| ... | ... | @@ -37,13 +35,11 @@ |
| 37 | 35 | <groupId>org.apache.deltaspike.core</groupId> |
| 38 | 36 | <artifactId>deltaspike-core-api</artifactId> |
| 39 | 37 | <scope>compile</scope> |
| 40 | - <version>1.7.1</version> | |
| 41 | 38 | </dependency> |
| 42 | 39 | <dependency> |
| 43 | 40 | <groupId>org.apache.deltaspike.core</groupId> |
| 44 | 41 | <artifactId>deltaspike-core-impl</artifactId> |
| 45 | 42 | <scope>runtime</scope> |
| 46 | - <version>1.7.1</version> | |
| 47 | 43 | </dependency> |
| 48 | 44 | </dependencies> |
| 49 | 45 | </project> | ... | ... |
demoiselle-core/src/main/java/org/demoiselle/jee/core/util/ResourceBundle.java
| ... | ... | @@ -18,7 +18,7 @@ import java.util.Set; |
| 18 | 18 | * and provide the locale and the base name for the bundle.</p> |
| 19 | 19 | * |
| 20 | 20 | * <p>To select which resource properties file to load when injecting beans of this class, qualify |
| 21 | - * the injection point with {@link org.demoiselle.annotation.Name}, using the resource name (without | |
| 21 | + * the injection point with {@link org.demoiselle.jee.core.annotation.Name}, using the resource name (without | |
| 22 | 22 | * the '.properties' extension) as the value. If the injection point isn't qualified the default |
| 23 | 23 | * file <code>messages.properties</code> will be loaded from the root of the classpath.</p> |
| 24 | 24 | * | ... | ... |
| ... | ... | @@ -0,0 +1,175 @@ |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| 4 | + | |
| 5 | + <artifactId>demoiselle-parent</artifactId> | |
| 6 | + <packaging>pom</packaging> | |
| 7 | + <modelVersion>4.0.0</modelVersion> | |
| 8 | + | |
| 9 | + <name>Demoiselle Parent POM</name> | |
| 10 | + | |
| 11 | + <parent> | |
| 12 | + <groupId>org.demoiselle.jee</groupId> | |
| 13 | + <artifactId>demoiselle-build</artifactId> | |
| 14 | + <version>3.0.0-BETA1-SNAPSHOT</version> | |
| 15 | + </parent> | |
| 16 | + | |
| 17 | + <properties> | |
| 18 | + <!-- General --> | |
| 19 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| 20 | + | |
| 21 | + <!-- Dependencies versions --> | |
| 22 | + <javaee.version>7.0</javaee.version> | |
| 23 | + <cdi.version>1.2</cdi.version> | |
| 24 | + <validation.version>1.1.0.Final</validation.version> | |
| 25 | + <transaction.version>1.2</transaction.version> | |
| 26 | + <jstl.version>1.2</jstl.version> | |
| 27 | + <el.version>3.0.0</el.version> | |
| 28 | + <servlet.version>3.1.0</servlet.version> | |
| 29 | + <persistence.version>1.0.2</persistence.version> | |
| 30 | + <rest.version>2.0</rest.version> | |
| 31 | + <concurrent.version>1.0</concurrent.version> | |
| 32 | + <hibernate.version>5.1.0.Final</hibernate.version> | |
| 33 | + <hibernate.validator.version>5.2.4.Final</hibernate.validator.version> | |
| 34 | + <commons.configuration.version>2.0</commons.configuration.version> | |
| 35 | + <jaxrs.version>2.0.1</jaxrs.version> | |
| 36 | + <javaee.version>7.0</javaee.version> | |
| 37 | + <deltaspike.version>1.7.1</deltaspike.version> | |
| 38 | + <ejb.version>3.2</ejb.version> | |
| 39 | + <cache.version>1.0.0</cache.version> | |
| 40 | + | |
| 41 | + <!-- Maven plugin versions --> | |
| 42 | + <maven.compiler.plugin.version>3.5.1</maven.compiler.plugin.version> | |
| 43 | + <maven.war.plugin.version>2.6</maven.war.plugin.version> | |
| 44 | + <maven.compiler.source>1.8</maven.compiler.source> | |
| 45 | + <maven.compiler.target>1.8</maven.compiler.target> | |
| 46 | + | |
| 47 | + </properties> | |
| 48 | + | |
| 49 | + <dependencyManagement> | |
| 50 | + | |
| 51 | + <dependencies> | |
| 52 | + | |
| 53 | + <!-- jsr-299 api --> | |
| 54 | + <dependency> | |
| 55 | + <groupId>javax.enterprise</groupId> | |
| 56 | + <artifactId>cdi-api</artifactId> | |
| 57 | + <scope>provided</scope> | |
| 58 | + <version>${cdi.version}</version> | |
| 59 | + </dependency> | |
| 60 | + | |
| 61 | + <!-- jsr-349 api --> | |
| 62 | + <dependency> | |
| 63 | + <artifactId>validation-api</artifactId> | |
| 64 | + <groupId>javax.validation</groupId> | |
| 65 | + <scope>provided</scope> | |
| 66 | + <version>${validation.version}</version> | |
| 67 | + </dependency> | |
| 68 | + | |
| 69 | + <!-- jsr-341 api and impl --> | |
| 70 | + <dependency> | |
| 71 | + <groupId>org.glassfish</groupId> | |
| 72 | + <artifactId>javax.el</artifactId> | |
| 73 | + <scope>provided</scope> | |
| 74 | + <version>${el.version}</version> | |
| 75 | + </dependency> | |
| 76 | + | |
| 77 | + <!-- jsr-342 api --> | |
| 78 | + <dependency> | |
| 79 | + <groupId>javax</groupId> | |
| 80 | + <artifactId>javaee-api</artifactId> | |
| 81 | + <scope>provided</scope> | |
| 82 | + <version>${javaee.version}</version> | |
| 83 | + </dependency> | |
| 84 | + | |
| 85 | + <!-- jsr-340 api --> | |
| 86 | + <dependency> | |
| 87 | + <groupId>javax.servlet</groupId> | |
| 88 | + <artifactId>javax.servlet-api</artifactId> | |
| 89 | + <scope>provided</scope> | |
| 90 | + <version>${servlet.version}</version> | |
| 91 | + </dependency> | |
| 92 | + <dependency> | |
| 93 | + <groupId>javax.servlet</groupId> | |
| 94 | + <artifactId>jstl</artifactId> | |
| 95 | + <scope>provided</scope> | |
| 96 | + <version>${jstl.version}</version> | |
| 97 | + </dependency> | |
| 98 | + | |
| 99 | + <!-- jsr-338 api --> | |
| 100 | + <dependency> | |
| 101 | + <groupId>org.hibernate</groupId> | |
| 102 | + <artifactId>hibernate-entitymanager</artifactId> | |
| 103 | + <scope>provided</scope> | |
| 104 | + <version>${hibernate.version}</version> | |
| 105 | + </dependency> | |
| 106 | + | |
| 107 | + <!-- jsr-339 api --> | |
| 108 | + <dependency> | |
| 109 | + <groupId>javax.ws.rs</groupId> | |
| 110 | + <artifactId>javax.ws.rs-api</artifactId> | |
| 111 | + <scope>provided</scope> | |
| 112 | + <version>${jaxrs.version}</version> | |
| 113 | + </dependency> | |
| 114 | + | |
| 115 | + <!-- jsr-342 api --> | |
| 116 | + <dependency> | |
| 117 | + <groupId>javax</groupId> | |
| 118 | + <artifactId>javaee-web-api</artifactId> | |
| 119 | + <version>${javaee.version}</version> | |
| 120 | + </dependency> | |
| 121 | + | |
| 122 | + <!-- jsr-318 api --> | |
| 123 | + <dependency> | |
| 124 | + <groupId>javax.ejb</groupId> | |
| 125 | + <artifactId>javax.ejb-api</artifactId> | |
| 126 | + <version>${ejb.version}</version> | |
| 127 | + <scope>provided</scope> | |
| 128 | + </dependency> | |
| 129 | + | |
| 130 | + <!-- jsr-107 api --> | |
| 131 | + <dependency> | |
| 132 | + <groupId>javax.cache</groupId> | |
| 133 | + <artifactId>cache-api</artifactId> | |
| 134 | + <version>${cache.version}</version> | |
| 135 | + </dependency> | |
| 136 | + | |
| 137 | + <!-- jsr-107 api --> | |
| 138 | + <dependency> | |
| 139 | + <groupId>javax.persistence</groupId> | |
| 140 | + <artifactId>persistence-api</artifactId> | |
| 141 | + <version>${persistence.version}</version> | |
| 142 | + </dependency> | |
| 143 | + | |
| 144 | + <dependency> | |
| 145 | + <groupId>javax.transaction</groupId> | |
| 146 | + <artifactId>javax.transaction-api</artifactId> | |
| 147 | + <version>${transaction.version}</version> | |
| 148 | + </dependency> | |
| 149 | + | |
| 150 | + <!-- configuration e messages --> | |
| 151 | + <dependency> | |
| 152 | + <groupId>org.apache.deltaspike.core</groupId> | |
| 153 | + <artifactId>deltaspike-core-api</artifactId> | |
| 154 | + <scope>compile</scope> | |
| 155 | + <version>${deltaspike.version}</version> | |
| 156 | + </dependency> | |
| 157 | + <dependency> | |
| 158 | + <groupId>org.apache.deltaspike.core</groupId> | |
| 159 | + <artifactId>deltaspike-core-impl</artifactId> | |
| 160 | + <scope>runtime</scope> | |
| 161 | + <version>${deltaspike.version}</version> | |
| 162 | + </dependency> | |
| 163 | + | |
| 164 | + <!-- demoiselle --> | |
| 165 | + <dependency> | |
| 166 | + <groupId>org.demoiselle.jee</groupId> | |
| 167 | + <artifactId>demoiselle-core</artifactId> | |
| 168 | + <version>${project.version}</version> | |
| 169 | + </dependency> | |
| 170 | + | |
| 171 | + </dependencies> | |
| 172 | + | |
| 173 | + </dependencyManagement> | |
| 174 | + | |
| 175 | +</project> | ... | ... |
demoiselle-persistence-jpa/pom.xml
| 1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | -<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"> | |
| 3 | - <modelVersion>4.0.0</modelVersion> | |
| 4 | - <groupId>org.demoiselle.jee</groupId> | |
| 5 | - <artifactId>demoiselle-persistence-jpa</artifactId> | |
| 6 | - <version>3.0.0-SNAPSHOT</version> | |
| 7 | - <packaging>jar</packaging> | |
| 8 | - | |
| 9 | - <name>Demoiselle Persistence</name> | |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| 4 | + <modelVersion>4.0.0</modelVersion> | |
| 5 | + <artifactId>demoiselle-persistence-jpa</artifactId> | |
| 6 | + <version>3.0.0-SNAPSHOT</version> | |
| 7 | + <packaging>jar</packaging> | |
| 8 | + | |
| 9 | + <name>Demoiselle Persistence</name> | |
| 10 | 10 | <description> |
| 11 | 11 | Demoiselle Persistence |
| 12 | 12 | </description> |
| 13 | - | |
| 14 | - <properties> | |
| 15 | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| 16 | - <maven.compiler.source>1.8</maven.compiler.source> | |
| 17 | - <maven.compiler.target>1.8</maven.compiler.target> | |
| 18 | - </properties> | |
| 19 | - <dependencies> | |
| 20 | - <dependency> | |
| 21 | - <groupId>${project.groupId}</groupId> | |
| 22 | - <artifactId>demoiselle-core</artifactId> | |
| 23 | - <version>${project.version}</version> | |
| 24 | - </dependency> | |
| 25 | - <dependency> | |
| 26 | - <groupId>javax.ejb</groupId> | |
| 27 | - <artifactId>javax.ejb-api</artifactId> | |
| 28 | - <version>3.2</version> | |
| 29 | - <scope>provided</scope> | |
| 30 | - </dependency> | |
| 31 | - <dependency> | |
| 32 | - <groupId>javax.cache</groupId> | |
| 33 | - <artifactId>cache-api</artifactId> | |
| 34 | - <version>1.0.0</version> | |
| 35 | - <type>jar</type> | |
| 36 | - </dependency> | |
| 37 | - <dependency> | |
| 38 | - <groupId>javax.cache</groupId> | |
| 39 | - <artifactId>cache-api</artifactId> | |
| 40 | - <version>1.0.0</version> | |
| 41 | - <type>jar</type> | |
| 42 | - </dependency> | |
| 43 | - <dependency> | |
| 44 | - <groupId>javax.persistence</groupId> | |
| 45 | - <artifactId>persistence-api</artifactId> | |
| 46 | - <version>1.0.2</version> | |
| 47 | - <type>jar</type> | |
| 48 | - </dependency> | |
| 49 | - <dependency> | |
| 50 | - <groupId>javax.transaction</groupId> | |
| 51 | - <artifactId>javax.transaction-api</artifactId> | |
| 52 | - <version>1.2</version> | |
| 53 | - <type>jar</type> | |
| 54 | - </dependency> | |
| 55 | - </dependencies> | |
| 13 | + | |
| 14 | + <parent> | |
| 15 | + <groupId>org.demoiselle.jee</groupId> | |
| 16 | + <artifactId>demoiselle-parent</artifactId> | |
| 17 | + <version>3.0.0-BETA1-SNAPSHOT</version> | |
| 18 | + <relativePath>../demoiselle-parent</relativePath> | |
| 19 | + </parent> | |
| 20 | + | |
| 21 | + <dependencies> | |
| 22 | + | |
| 23 | + <dependency> | |
| 24 | + <groupId>org.demoiselle.jee</groupId> | |
| 25 | + <artifactId>demoiselle-core</artifactId> | |
| 26 | + </dependency> | |
| 27 | + | |
| 28 | + <dependency> | |
| 29 | + <groupId>javax.ejb</groupId> | |
| 30 | + <artifactId>javax.ejb-api</artifactId> | |
| 31 | + </dependency> | |
| 32 | + | |
| 33 | + <dependency> | |
| 34 | + <groupId>javax.cache</groupId> | |
| 35 | + <artifactId>cache-api</artifactId> | |
| 36 | + <type>jar</type> | |
| 37 | + </dependency> | |
| 38 | + | |
| 39 | + <dependency> | |
| 40 | + <groupId>javax.cache</groupId> | |
| 41 | + <artifactId>cache-api</artifactId> | |
| 42 | + </dependency> | |
| 43 | + | |
| 44 | + <dependency> | |
| 45 | + <groupId>javax.persistence</groupId> | |
| 46 | + <artifactId>persistence-api</artifactId> | |
| 47 | + </dependency> | |
| 48 | + | |
| 49 | + <dependency> | |
| 50 | + <groupId>javax.transaction</groupId> | |
| 51 | + <artifactId>javax.transaction-api</artifactId> | |
| 52 | + </dependency> | |
| 53 | + | |
| 54 | + </dependencies> | |
| 56 | 55 | </project> | ... | ... |
demoiselle-security/pom.xml
| ... | ... | @@ -2,7 +2,6 @@ |
| 2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | - <groupId>org.demoiselle.jee</groupId> | |
| 6 | 5 | <artifactId>demoiselle-security</artifactId> |
| 7 | 6 | <version>3.0.0-SNAPSHOT</version> |
| 8 | 7 | <packaging>jar</packaging> |
| ... | ... | @@ -11,18 +10,20 @@ |
| 11 | 10 | <description> |
| 12 | 11 | Demoiselle Security |
| 13 | 12 | </description> |
| 13 | + | |
| 14 | + <parent> | |
| 15 | + <groupId>org.demoiselle.jee</groupId> | |
| 16 | + <artifactId>demoiselle-parent</artifactId> | |
| 17 | + <version>3.0.0-BETA1-SNAPSHOT</version> | |
| 18 | + <relativePath>../demoiselle-parent</relativePath> | |
| 19 | + </parent> | |
| 14 | 20 | |
| 15 | - <properties> | |
| 16 | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| 17 | - <maven.compiler.source>1.8</maven.compiler.source> | |
| 18 | - <maven.compiler.target>1.8</maven.compiler.target> | |
| 19 | - </properties> | |
| 21 | + | |
| 20 | 22 | <dependencies> |
| 21 | 23 | |
| 22 | 24 | <dependency> |
| 23 | - <groupId>${project.groupId}</groupId> | |
| 25 | + <groupId>org.demoiselle.jee</groupId> | |
| 24 | 26 | <artifactId>demoiselle-core</artifactId> |
| 25 | - <version>${project.version}</version> | |
| 26 | 27 | </dependency> |
| 27 | 28 | |
| 28 | 29 | </dependencies> | ... | ... |
demoiselle-ws-jaxrs/.gitignore
demoiselle-ws-jaxrs/.project
| ... | ... | @@ -16,12 +16,12 @@ |
| 16 | 16 | </arguments> |
| 17 | 17 | </buildCommand> |
| 18 | 18 | <buildCommand> |
| 19 | - <name>org.eclipse.m2e.core.maven2Builder</name> | |
| 19 | + <name>org.eclipse.wst.validation.validationbuilder</name> | |
| 20 | 20 | <arguments> |
| 21 | 21 | </arguments> |
| 22 | 22 | </buildCommand> |
| 23 | 23 | <buildCommand> |
| 24 | - <name>org.eclipse.wst.validation.validationbuilder</name> | |
| 24 | + <name>org.eclipse.m2e.core.maven2Builder</name> | |
| 25 | 25 | <arguments> |
| 26 | 26 | </arguments> |
| 27 | 27 | </buildCommand> | ... | ... |
pom.xml
| ... | ... | @@ -9,7 +9,7 @@ |
| 9 | 9 | <version>3.0.0-BETA1-SNAPSHOT</version> |
| 10 | 10 | |
| 11 | 11 | <name>Demoiselle Framework</name> |
| 12 | - <description>Framework de integração para Java EE 7 baseado na especificação CDI 1.1 (JSR 346).</description> | |
| 12 | + <description>Framework de integração para Java EE 7 baseado na especificação CDI 1.2 (JSR 346).</description> | |
| 13 | 13 | <url>http://demoiselle.io</url> |
| 14 | 14 | |
| 15 | 15 | <licenses> |
| ... | ... | @@ -64,6 +64,7 @@ |
| 64 | 64 | </developers> |
| 65 | 65 | |
| 66 | 66 | <modules> |
| 67 | + <module>demoiselle-parent</module> | |
| 67 | 68 | <module>demoiselle-core</module> |
| 68 | 69 | <module>demoiselle-persistence-jpa</module> |
| 69 | 70 | <module>demoiselle-security</module> |
| ... | ... | @@ -91,7 +92,7 @@ |
| 91 | 92 | <artifactId>maven-deploy-plugin</artifactId> |
| 92 | 93 | <version>2.8.2</version> |
| 93 | 94 | </plugin> |
| 94 | - | |
| 95 | + | |
| 95 | 96 | <plugin> |
| 96 | 97 | <groupId>org.apache.maven.plugins</groupId> |
| 97 | 98 | <artifactId>maven-source-plugin</artifactId> |
| ... | ... | @@ -105,7 +106,7 @@ |
| 105 | 106 | </execution> |
| 106 | 107 | </executions> |
| 107 | 108 | </plugin> |
| 108 | - | |
| 109 | +<!-- | |
| 109 | 110 | <plugin> |
| 110 | 111 | <groupId>org.apache.maven.plugins</groupId> |
| 111 | 112 | <artifactId>maven-javadoc-plugin</artifactId> |
| ... | ... | @@ -119,7 +120,7 @@ |
| 119 | 120 | </execution> |
| 120 | 121 | </executions> |
| 121 | 122 | </plugin> |
| 122 | - | |
| 123 | + --> | |
| 123 | 124 | <plugin> |
| 124 | 125 | <groupId>org.apache.maven.plugins</groupId> |
| 125 | 126 | <artifactId>maven-gpg-plugin</artifactId> | ... | ... |
target/demoiselle-build-3.0.0-BETA1-SNAPSHOT.pom
| ... | ... | @@ -1,215 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| 4 | - <modelVersion>4.0.0</modelVersion> | |
| 5 | - | |
| 6 | - <groupId>org.demoiselle.jee</groupId> | |
| 7 | - <artifactId>demoiselle-build</artifactId> | |
| 8 | - <packaging>pom</packaging> | |
| 9 | - <version>3.0.0-BETA1-SNAPSHOT</version> | |
| 10 | - | |
| 11 | - <name>Demoiselle Framework</name> | |
| 12 | - <description>Framework de integração para Java EE 7 baseado na especificação CDI 1.1 (JSR 346).</description> | |
| 13 | - <url>http://demoiselle.io</url> | |
| 14 | - | |
| 15 | - <licenses> | |
| 16 | - <license> | |
| 17 | - <name>GNU Lesser General Public License, Version 3</name> | |
| 18 | - <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url> | |
| 19 | - </license> | |
| 20 | - </licenses> | |
| 21 | - | |
| 22 | - <organization> | |
| 23 | - <name>SERPRO - Serviço Federal de Processamento de Dados</name> | |
| 24 | - <url>http://www.serpro.gov.br</url> | |
| 25 | - </organization> | |
| 26 | - | |
| 27 | - <developers> | |
| 28 | - | |
| 29 | - <developer> | |
| 30 | - <name>Cassio Maes da Fonseca</name> | |
| 31 | - <email>cassiomaes@gmail.com</email> | |
| 32 | - <organization>SERPRO</organization> | |
| 33 | - <organizationUrl>http://www.serpro.gov.br</organizationUrl> | |
| 34 | - </developer> | |
| 35 | - | |
| 36 | - <developer> | |
| 37 | - <name>Clovis Lemes Ferreira Junior</name> | |
| 38 | - <email>clovisjunior2009@gmail.com</email> | |
| 39 | - <organization>SERPRO</organization> | |
| 40 | - <organizationUrl>http://www.serpro.gov.br</organizationUrl> | |
| 41 | - </developer> | |
| 42 | - | |
| 43 | - <developer> | |
| 44 | - <name>Julian Cesar dos Santos</name> | |
| 45 | - <email>juliancesar@gmail.com</email> | |
| 46 | - <organization>SERPRO</organization> | |
| 47 | - <organizationUrl>http://www.serpro.gov.br</organizationUrl> | |
| 48 | - </developer> | |
| 49 | - | |
| 50 | - <developer> | |
| 51 | - <name>Paulo Gladson Ximenes Pinheiro</name> | |
| 52 | - <email>paulopinheiro777@gmail.com</email> | |
| 53 | - <organization>SERPRO</organization> | |
| 54 | - <organizationUrl>http://www.serpro.gov.br</organizationUrl> | |
| 55 | - </developer> | |
| 56 | - | |
| 57 | - <developer> | |
| 58 | - <name>Vanderson Botelho da Silva</name> | |
| 59 | - <email>botelhojp@gmail.com</email> | |
| 60 | - <organization>SERPRO</organization> | |
| 61 | - <organizationUrl>http://www.serpro.gov.br</organizationUrl> | |
| 62 | - </developer> | |
| 63 | - | |
| 64 | - </developers> | |
| 65 | - | |
| 66 | - <modules> | |
| 67 | - <module>demoiselle-core</module> | |
| 68 | - <module>demoiselle-persistence-jpa</module> | |
| 69 | - <module>demoiselle-security</module> | |
| 70 | - <module>demoiselle-ws-jaxrs</module> | |
| 71 | - </modules> | |
| 72 | - | |
| 73 | - <properties> | |
| 74 | - <project.alias>framework</project.alias> | |
| 75 | - <java.version>1.8</java.version> | |
| 76 | - <maven.compiler.source>1.8</maven.compiler.source> | |
| 77 | - <maven.compiler.target>1.8</maven.compiler.target> | |
| 78 | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| 79 | - </properties> | |
| 80 | - | |
| 81 | - <build> | |
| 82 | - <plugins> | |
| 83 | - <plugin> | |
| 84 | - <groupId>org.apache.maven.plugins</groupId> | |
| 85 | - <artifactId>maven-assembly-plugin</artifactId> | |
| 86 | - <version>2.6</version> | |
| 87 | - </plugin> | |
| 88 | - | |
| 89 | - <plugin> | |
| 90 | - <groupId>org.apache.maven.plugins</groupId> | |
| 91 | - <artifactId>maven-deploy-plugin</artifactId> | |
| 92 | - <version>2.8.2</version> | |
| 93 | - </plugin> | |
| 94 | - | |
| 95 | - <plugin> | |
| 96 | - <groupId>org.apache.maven.plugins</groupId> | |
| 97 | - <artifactId>maven-source-plugin</artifactId> | |
| 98 | - <version>2.2.1</version> | |
| 99 | - <executions> | |
| 100 | - <execution> | |
| 101 | - <id>attach-sources</id> | |
| 102 | - <goals> | |
| 103 | - <goal>jar-no-fork</goal> | |
| 104 | - </goals> | |
| 105 | - </execution> | |
| 106 | - </executions> | |
| 107 | - </plugin> | |
| 108 | - | |
| 109 | - <plugin> | |
| 110 | - <groupId>org.apache.maven.plugins</groupId> | |
| 111 | - <artifactId>maven-javadoc-plugin</artifactId> | |
| 112 | - <version>2.9.1</version> | |
| 113 | - <executions> | |
| 114 | - <execution> | |
| 115 | - <id>attach-javadocs</id> | |
| 116 | - <goals> | |
| 117 | - <goal>jar</goal> | |
| 118 | - </goals> | |
| 119 | - </execution> | |
| 120 | - </executions> | |
| 121 | - </plugin> | |
| 122 | - | |
| 123 | - <plugin> | |
| 124 | - <groupId>org.apache.maven.plugins</groupId> | |
| 125 | - <artifactId>maven-gpg-plugin</artifactId> | |
| 126 | - <version>1.5</version> | |
| 127 | - <executions> | |
| 128 | - <execution> | |
| 129 | - <id>sign-artifacts</id> | |
| 130 | - <phase>verify</phase> | |
| 131 | - <goals> | |
| 132 | - <goal>sign</goal> | |
| 133 | - </goals> | |
| 134 | - </execution> | |
| 135 | - </executions> | |
| 136 | - </plugin> | |
| 137 | - | |
| 138 | - <plugin> | |
| 139 | - <groupId>org.sonatype.plugins</groupId> | |
| 140 | - <artifactId>nexus-staging-maven-plugin</artifactId> | |
| 141 | - <version>1.6.3</version> | |
| 142 | - <extensions>true</extensions> | |
| 143 | - <configuration> | |
| 144 | - <serverId>sonatype-nexus-staging</serverId> | |
| 145 | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> | |
| 146 | - <autoReleaseAfterClose>false</autoReleaseAfterClose> | |
| 147 | - </configuration> | |
| 148 | - </plugin> | |
| 149 | - | |
| 150 | - <plugin> | |
| 151 | - <groupId>org.apache.maven.plugins</groupId> | |
| 152 | - <artifactId>maven-release-plugin</artifactId> | |
| 153 | - <version>2.5</version> | |
| 154 | - <configuration> | |
| 155 | - <autoVersionSubmodules>true</autoVersionSubmodules> | |
| 156 | - <useReleaseProfile>false</useReleaseProfile> | |
| 157 | - <releaseProfiles>release</releaseProfiles> | |
| 158 | - <goals>deploy</goals> | |
| 159 | - </configuration> | |
| 160 | - </plugin> | |
| 161 | - </plugins> | |
| 162 | - | |
| 163 | - </build> | |
| 164 | - | |
| 165 | - <scm> | |
| 166 | - <connection>scm:git:git@github.com:demoiselle/${project.alias}.git</connection> | |
| 167 | - <developerConnection>scm:git:git@github.com:demoiselle/${project.alias}.git</developerConnection> | |
| 168 | - <url>http://github.com/demoiselle/${project.alias}</url> | |
| 169 | - <tag>HEAD</tag> | |
| 170 | - </scm> | |
| 171 | - | |
| 172 | - <distributionManagement> | |
| 173 | - <site> | |
| 174 | - <id>demoiselle.sourceforge.net</id> | |
| 175 | - <url>${site.url}</url> | |
| 176 | - </site> | |
| 177 | - | |
| 178 | - <snapshotRepository> | |
| 179 | - <id>sonatype-nexus-snapshots</id> | |
| 180 | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> | |
| 181 | - </snapshotRepository> | |
| 182 | - | |
| 183 | - <repository> | |
| 184 | - <id>sonatype-nexus-staging</id> | |
| 185 | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | |
| 186 | - </repository> | |
| 187 | - </distributionManagement> | |
| 188 | - | |
| 189 | - <repositories> | |
| 190 | - <repository> | |
| 191 | - <id>sonatype-nexus-snapshots</id> | |
| 192 | - <name>Sonatype Nexus Snapshots</name> | |
| 193 | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> | |
| 194 | - <snapshots> | |
| 195 | - <enabled>true</enabled> | |
| 196 | - </snapshots> | |
| 197 | - <releases> | |
| 198 | - <enabled>false</enabled> | |
| 199 | - </releases> | |
| 200 | - </repository> | |
| 201 | - | |
| 202 | - <repository> | |
| 203 | - <id>sonatype-nexus-releases</id> | |
| 204 | - <name>Sonatype Nexus Releases</name> | |
| 205 | - <url>https://oss.sonatype.org/content/repositories/releases</url> | |
| 206 | - <snapshots> | |
| 207 | - <enabled>false</enabled> | |
| 208 | - </snapshots> | |
| 209 | - <releases> | |
| 210 | - <enabled>true</enabled> | |
| 211 | - </releases> | |
| 212 | - </repository> | |
| 213 | - </repositories> | |
| 214 | - | |
| 215 | -</project> |
target/demoiselle-build-3.0.0-BETA1-SNAPSHOT.pom.asc
| ... | ... | @@ -1,11 +0,0 @@ |
| 1 | ------BEGIN PGP SIGNATURE----- | |
| 2 | -Version: GnuPG v1.4.11 (GNU/Linux) | |
| 3 | - | |
| 4 | -iQEcBAABAgAGBQJX5Rn6AAoJEA9xDIcuJD2zCHIIAIMI6VIeM7S9Wn4BZsi194M+ | |
| 5 | -6jmukWNMJayf+ulkx8mDvV32Y3+tNMZ9mijUav2E8WpvCujlzGTPlXzA1PaBWzdk | |
| 6 | -G3g+n0xOn5hzGt2NVf8oR7Y92wNEwCq7SeBsnnz9IxuscJeoZmjGBLNWUKbbp9sE | |
| 7 | -9bvnRWCKd7PYiAIZO4hiDm60NKkullnCTsB77Fw+V7at2ai63xJehU0I246cpE2h | |
| 8 | -DlTWZ51K+RTgR6Hbdgm0jKH78Tdguo8OfFeHA6v77c3PL6DPltex+uVYyDD0csIB | |
| 9 | -YEjnSpMiwJuyUVuSOCDO4ZqEn3my57U4NU2zcUm90XDoX8uvKSSxv1Z7aKYjsz4= | |
| 10 | -=DhQK | |
| 11 | ------END PGP SIGNATURE----- |