Commit 11903bee7b58cbda224b3824c6b0e9b5559ad113
1 parent
a74ea6d3
Exists in
master
and in
1 other branch
Adiciona repositorios externos
Algumas referencias de repositorio não estão no repositorio central do maven
Showing
1 changed file
with
18 additions
and
2 deletions
Show diff stats
pom.xml
... | ... | @@ -12,7 +12,15 @@ |
12 | 12 | <properties> |
13 | 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
14 | 14 | </properties> |
15 | - | |
15 | + | |
16 | + <repositories> | |
17 | + <repository> | |
18 | + <id>spring</id> | |
19 | + <url>http://repo.spring.io/plugins-release/</url> | |
20 | + <name>spring</name> | |
21 | + </repository> | |
22 | + </repositories> | |
23 | + | |
16 | 24 | <build> |
17 | 25 | <resources> |
18 | 26 | <resource> |
... | ... | @@ -93,6 +101,8 @@ |
93 | 101 | </build> |
94 | 102 | |
95 | 103 | <dependencies> |
104 | + | |
105 | + <!-- https://mvnrepository.com/artifact/org.jboss.ejb3/jboss-ejb3-embedded --> | |
96 | 106 | <!-- EJB --> |
97 | 107 | <dependency> |
98 | 108 | <groupId>org.jboss.ejb3</groupId> |
... | ... | @@ -100,7 +110,13 @@ |
100 | 110 | <scope>provided</scope> |
101 | 111 | <version>3.1.0</version> |
102 | 112 | </dependency> |
103 | - | |
113 | + | |
114 | + <!-- logging --> | |
115 | + <dependency> | |
116 | + <groupId>org.jboss.logging</groupId> | |
117 | + <artifactId>jboss-logging</artifactId> | |
118 | + <version>3.3.0.Final</version> | |
119 | + </dependency> | |
104 | 120 | |
105 | 121 | <!-- REST --> |
106 | 122 | <dependency> | ... | ... |