-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpom.xml
More file actions
56 lines (55 loc) · 1.8 KB
/
pom.xml
File metadata and controls
56 lines (55 loc) · 1.8 KB
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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.techworldwitmurali</groupId>
<artifactId>Java-Projects</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>Java-Project</name>
<url>http://maven.apache.org</url>
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>27</version>
<relativePath>../asf/pom.xml</relativePath>
</parent>
<modules>
<module>module1</module>
<module>module2</module>
</modules>
<properties>
<version>3.01 </version>
<javaVersion>8</javaVersion>
<classWorldsVersion>2.6.0</classWorldsVersion>
<commonsCliVersion>1.5.0</commonsCliVersion>
<mockitoVersion>3.2.0</mockitoVersion>
<maven.site.path>ref/4-LATEST</maven.site.path>
<project.build.outputTimestamp>2022-10-14T23:41:39Z</project.build.outputTimestamp>
</properties>
<repositories>
<repository>
<id>my-internal-site</id>
<url>https://myserver/repo</url>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
<snapshotRepository>
<id>nexus-snapshots</id>
<url>http://your-host:8081/repository/maven-snapshots/</url>
</snapshotRepository>
<repository>
<id>nexus-releases</id>
<url>http://your-host:8081/repository/maven-releases/</url>
</repository>
</distributionManagement>
</project>