Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jaxrs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alan de Oliveira
jaxrs
Commits
f549960b
Commit
f549960b
authored
Sep 22, 2014
by
dblevins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merged pull request #2 from danielsoro 9eec043df2e5804c9fce615ba1545ef47af291b6
parent
8bdea101
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
119 deletions
+45
-119
.gitignore
.gitignore
+36
-113
pom.xml
pom.xml
+9
-6
No files found.
.gitignore
View file @
f549960b
# Created by https://www.gitignore.io
### OSX ###
.DS_Store
*.bak
*.class
*.ear
*.iml
*.ipr
*.iws
*.jar
*.launch
*.pydevproject
*.swp
*.tmp
*.war
*~.nib
.AppleDB
.AppleDesktop
.AppleDouble
.DS_Store
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear on external disk
.Spotlight-V100
.Trashes
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
._*
.apdisk
### Java ###
*.class
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.ear
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
### Eclipse ###
*.pydevproject
.metadata
.buildpath
.cproject
.externalToolBuilders/
.gradle
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.idea/
.idea_modules/
.loadpath
# External tool builders
.externalToolBuilders/
# Locally stored "Eclipse launch configurations"
*.launch
# CDT-specific
.cproject
# PDT-specific
.buildpath
# sbteclipse plugin
.metadata
.mtj.tmp/
.settings/
.target
# TeXlipse plugin
.texlipse
### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
/*.iml
## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the follwing:
# User-specific stuff:
# .idea/workspace.xml
# .idea/tasks.xml
# .idea/dictionaries
# Sensitive or high-churn files:
# .idea/dataSources.ids
# .idea/dataSources.xml
# .idea/sqlDataSources.xml
# .idea/dynamic.xml
# .idea/uiDesigner.xml
# Gradle:
# .idea/gradle.xml
# .idea/libraries
# Mongo Explorer plugin:
# .idea/mongoSettings.xml
## File-based project format:
*.ipr
*.iws
## Plugin-specific files:
# IntelliJ
out/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
Icon
Network Trash Folder
Temporary Items
atlassian-ide-plugin.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
bin/
com_crashlytics_export_strings.xml
### Maven ###
target/
pom.xml.tag
hs_err_pid*
local.properties
out/
pom.xml.next
pom.xml.releaseBackup
pom.xml.tag
pom.xml.versionsBackup
pom.xml.next
release.properties
target/
tmp/
pom.xml
View file @
f549960b
...
...
@@ -30,25 +30,25 @@
<dependency>
<groupId>
org.apache.openejb
</groupId>
<artifactId>
javaee-api
</artifactId>
<version>
6.0-6
</version>
<version>
${openejb.javaee.api}
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.apache.openejb
</groupId>
<artifactId>
arquillian-tomee-embedded
</artifactId>
<version>
1.7.0
</version>
<version>
${tomee.version}
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.apache.openejb
</groupId>
<artifactId>
openejb-cxf-rs
</artifactId>
<version>
4.7.0
</version>
<version>
${openejb.version}
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.apache.openejb
</groupId>
<artifactId>
tomee-jaxrs
</artifactId>
<version>
1.7.0
</version>
<version>
${tomee.version}
</version>
<scope>
test
</scope>
</dependency>
<dependency>
...
...
@@ -88,9 +88,9 @@
<plugin>
<groupId>
org.apache.openejb.maven
</groupId>
<artifactId>
tomee-maven-plugin
</artifactId>
<version>
1.7.0
</version>
<version>
${tomee.version}
</version>
<configuration>
<tomeeVersion>
1.7.0
</tomeeVersion>
<tomeeVersion>
${tomee.version}
</tomeeVersion>
<tomeeClassifier>
jaxrs
</tomeeClassifier>
</configuration>
</plugin>
...
...
@@ -106,6 +106,9 @@
</repositories>
<properties>
<tomee.version>
1.7.1
</tomee.version>
<openejb.javaee.api>
6.0-6
</openejb.javaee.api>
<openejb.version>
4.7.0
</openejb.version>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
</project>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment