Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
EJB-EncryptionBean
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
web2
EJB-EncryptionBean
Compare revisions
7eb6f391a3a5e08f0aa617d4b068ed7281a6a38e to master
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
web2/EJB-EncryptionBean
Select target project
No results found
master
Select Git revision
Branches
master
Swap
Target
wilsonsf/EJB-EncryptionBean
Select target project
web2/EJB-EncryptionBean
wilsonsf/EJB-EncryptionBean
2 results
7eb6f391a3a5e08f0aa617d4b068ed7281a6a38e
Select Git revision
Branches
develop
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
adicionando java ee 8 como dependencia do maven
· 16d61b3d
Carlos Eduardo da Silva
authored
5 years ago
16d61b3d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Encryption-Bean/pom.xml
+52
-43
52 additions, 43 deletions
Encryption-Bean/pom.xml
with
52 additions
and
43 deletions
Encryption-Bean/pom.xml
View file @
16d61b3d
<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"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
br.ufrn.imd.web2
</groupId>
<artifactId>
Encryption-Bean
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<packaging>
ejb
</packaging>
<build>
<plugins>
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.7.0
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-ejb-plugin
</artifactId>
<version>
2.5
</version>
<configuration>
<ejbVersion>
3.2
</ejbVersion>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>
javax.ejb
</groupId>
<artifactId>
javax.ejb-api
</artifactId>
<version>
3.2
</version>
</dependency>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.12
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
commons-codec
</groupId>
<artifactId>
commons-codec
</artifactId>
<version>
1.11
</version>
</dependency>
</dependencies>
<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"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
br.ufrn.imd.web2
</groupId>
<artifactId>
Encryption-Bean
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<packaging>
ejb
</packaging>
<build>
<plugins>
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.7.0
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-ejb-plugin
</artifactId>
<version>
2.5
</version>
<configuration>
<ejbVersion>
3.2
</ejbVersion>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- https://mvnrepository.com/artifact/javax/javaee-api -->
<dependency>
<groupId>
javax
</groupId>
<artifactId>
javaee-api
</artifactId>
<version>
8.0
</version>
</dependency>
<dependency>
<groupId>
javax.ejb
</groupId>
<artifactId>
javax.ejb-api
</artifactId>
<version>
3.2
</version>
</dependency>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.12
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
commons-codec
</groupId>
<artifactId>
commons-codec
</artifactId>
<version>
1.11
</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.