Commit 765b1a94ca3f66024be88473a56c05edb498dd8e
1 parent
ae80cb4c
Melhorias
Showing
3 changed files
with
35 additions
and
39 deletions
Show diff stats
demoiselle-core/pom.xml
| 1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | 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> | |
| 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 | 5 | |
| 6 | - <artifactId>demoiselle-core</artifactId> | |
| 7 | - <packaging>jar</packaging> | |
| 6 | + <artifactId>demoiselle-core</artifactId> | |
| 7 | + <packaging>jar</packaging> | |
| 8 | 8 | |
| 9 | - <name>Demoiselle Core</name> | |
| 10 | - <description> | |
| 11 | - Contém funcionalidades comuns a todos os módulos framework. | |
| 12 | - </description> | |
| 9 | + <name>Demoiselle Core</name> | |
| 10 | + <description> | |
| 11 | + Contém funcionalidades comuns a todos os módulos framework. | |
| 12 | + </description> | |
| 13 | 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 | + <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 | 20 | |
| 21 | - <dependencies> | |
| 22 | - <dependency> | |
| 23 | - <groupId>javax</groupId> | |
| 24 | - <artifactId>javaee-web-api</artifactId> | |
| 25 | - </dependency> | |
| 21 | + <dependencies> | |
| 22 | + <dependency> | |
| 23 | + <groupId>javax</groupId> | |
| 24 | + <artifactId>javaee-web-api</artifactId> | |
| 25 | + </dependency> | |
| 26 | 26 | |
| 27 | - <dependency> | |
| 28 | - <groupId>javax.enterprise</groupId> | |
| 29 | - <artifactId>cdi-api</artifactId> | |
| 30 | - </dependency> | |
| 27 | + <dependency> | |
| 28 | + <groupId>javax.enterprise</groupId> | |
| 29 | + <artifactId>cdi-api</artifactId> | |
| 30 | + </dependency> | |
| 31 | 31 | |
| 32 | - <!-- Configuration/Messages --> | |
| 33 | - <dependency> | |
| 34 | - <groupId>org.apache.deltaspike.core</groupId> | |
| 35 | - <artifactId>deltaspike-core-api</artifactId> | |
| 36 | - <scope>compile</scope> | |
| 37 | - </dependency> | |
| 38 | - <dependency> | |
| 39 | - <groupId>org.apache.deltaspike.core</groupId> | |
| 40 | - <artifactId>deltaspike-core-impl</artifactId> | |
| 41 | - <scope>runtime</scope> | |
| 42 | - </dependency> | |
| 43 | - </dependencies> | |
| 32 | + <!-- Configuration/Messages --> | |
| 33 | + <dependency> | |
| 34 | + <groupId>org.apache.deltaspike.core</groupId> | |
| 35 | + <artifactId>deltaspike-core-api</artifactId> | |
| 36 | + <scope>compile</scope> | |
| 37 | + </dependency> | |
| 38 | + <dependency> | |
| 39 | + <groupId>org.apache.deltaspike.core</groupId> | |
| 40 | + <artifactId>deltaspike-core-impl</artifactId> | |
| 41 | + <scope>runtime</scope> | |
| 42 | + </dependency> | |
| 43 | + </dependencies> | |
| 44 | 44 | </project> | ... | ... |
demoiselle-parent/pom.xml
| ... | ... | @@ -39,8 +39,6 @@ |
| 39 | 39 | <deltaspike.version>1.7.1</deltaspike.version> |
| 40 | 40 | <ejb.version>3.2</ejb.version> |
| 41 | 41 | <cache.version>1.0.0</cache.version> |
| 42 | - <!--Microcontainers--> | |
| 43 | - <wildfly-swarm>2016.8</wildfly-swarm> | |
| 44 | 42 | |
| 45 | 43 | <!-- Maven plugin versions --> |
| 46 | 44 | <maven.compiler.plugin.version>3.5.1</maven.compiler.plugin.version> | ... | ... |
pom.xml
| ... | ... | @@ -71,9 +71,7 @@ |
| 71 | 71 | <module>demoiselle-rest</module> |
| 72 | 72 | <module>demoiselle-security</module> |
| 73 | 73 | <module>demoiselle-security-token</module> |
| 74 | - <module>demoiselle-security-basic</module> | |
| 75 | 74 | <module>demoiselle-security-jwt</module> |
| 76 | - <!--<module>demoiselle-security-jwt</module>--> | |
| 77 | 75 | </modules> |
| 78 | 76 | |
| 79 | 77 | <properties> | ... | ... |