FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
rapidpm/pom.xml at develop · Java-Archive/rapidpm · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Dec 15, 2023. It is now read-only.
Java-Archive
/
rapidpm
Public archive
Notifications
You must be signed in to change notification settings
Fork
0
Star
3
Code
Issues
0
Pull requests
28
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
rapidpm
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
113 lines (95 loc) · 3.56 KB
Breadcrumbs
rapidpm
/
pom.xml
Copy path
File metadata and controls
113 lines (95 loc) · 3.56 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?
xml
version
=
"
1.0
"
encoding
=
"
UTF-8
"
?>
<
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
>org.rapidpm</
groupId
>
<
artifactId
>rapidpm</
artifactId
>
<
version
>1.0-SNAPSHOT</
version
>
<
packaging
>pom</
packaging
>
<
modules
>
<
module
>base</
module
>
<
module
>webgui</
module
>
<
module
>webservice</
module
>
</
modules
>
<
dependencies
>
<
dependency
>
<
groupId
>log4j</
groupId
>
<
artifactId
>log4j</
artifactId
>
<
version
>1.2.17</
version
>
</
dependency
>
<
dependency
>
<
groupId
>javax.validation</
groupId
>
<
artifactId
>validation-api</
artifactId
>
<
version
>1.1.0.Final</
version
>
</
dependency
>
<
dependency
>
<
groupId
>junit</
groupId
>
<
artifactId
>junit</
artifactId
>
<
version
>4.12</
version
>
</
dependency
>
</
dependencies
>
<
distributionManagement
>
<
repository
>
<
id
>releases</
id
>
<
name
>RapidPM Releases</
name
>
<
url
>http://nexus.rapidpm.org/nexus/content/repositories/releases</
url
>
</
repository
>
<
snapshotRepository
>
<
id
>snapshots</
id
>
<
name
>RapidPM Snapshots</
name
>
<
url
>http://nexus.rapidpm.org/nexus/content/repositories/snapshots</
url
>
</
snapshotRepository
>
</
distributionManagement
>
<
repositories
>
<
repository
>
<
id
>releases</
id
>
<
name
>RapidPM Releases</
name
>
<
url
>http://nexus.rapidpm.org/nexus/content/repositories/releases</
url
>
</
repository
>
<
repository
>
<
id
>snapshots</
id
>
<
name
>RapidPM Snapshots</
name
>
<
url
>http://nexus.rapidpm.org/nexus/content/repositories/snapshots</
url
>
</
repository
>
<
repository
>
<
id
>apache-snapshot</
id
>
<
name
>Apache Snapshot Repository</
name
>
<
url
>https://repository.apache.org/content/groups/snapshots/</
url
>
</
repository
>
</
repositories
>
<
properties
>
<
project
.build.sourceEncoding>UTF-8</
project
.build.sourceEncoding>
</
properties
>
<
build
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
version
>3.0</
version
>
<
configuration
>
<
source
>1.7</
source
>
<
target
>1.7</
target
>
<
showDeprecation
>true</
showDeprecation
>
<
showWarnings
>true</
showWarnings
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-surefire-plugin</
artifactId
>
<
version
>2.12.4</
version
>
<
configuration
>
<
skipTests
>true</
skipTests
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.sonatype.plugins</
groupId
>
<
artifactId
>nexus-staging-maven-plugin</
artifactId
>
<
version
>1.2</
version
>
<
extensions
>true</
extensions
>
<
configuration
>
<
serverId
>snapshots</
serverId
>
<
nexusUrl
>http://nexus.rapidpm.org/nexus/</
nexusUrl
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL