57 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			XML
		
	
	
	
| <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>com.example.automation</groupId>
 | |
|   <artifactId>provision-nexus</artifactId>
 | |
|   <version>1.0-SNAPSHOT</version>
 | |
| 
 | |
|   <properties>
 | |
|     <nx-version>3.9.0-01</nx-version>
 | |
|   </properties>
 | |
|   <dependencies>
 | |
|     <dependency>
 | |
|       <groupId>org.sonatype.nexus</groupId>
 | |
|       <artifactId>nexus-core</artifactId>
 | |
|       <version>${nx-version}</version>
 | |
|     </dependency>
 | |
|     <dependency>
 | |
|       <groupId>org.sonatype.nexus</groupId>
 | |
|       <artifactId>nexus-script</artifactId>
 | |
|       <version>${nx-version}</version>
 | |
|     </dependency>
 | |
|     <dependency>
 | |
|       <groupId>org.sonatype.nexus</groupId>
 | |
|       <artifactId>nexus-security</artifactId>
 | |
|       <version>${nx-version}</version>
 | |
|     </dependency>
 | |
|     <dependency>
 | |
|       <groupId>org.sonatype.nexus</groupId>
 | |
|       <artifactId>nexus-repository</artifactId>
 | |
|       <version>${nx-version}</version>
 | |
|     </dependency>
 | |
|     <dependency>
 | |
|       <groupId>org.sonatype.nexus.plugins</groupId>
 | |
|       <artifactId>nexus-repository-maven</artifactId>
 | |
|       <version>${nx-version}</version>
 | |
|     </dependency>
 | |
|     <dependency>
 | |
|       <groupId>org.sonatype.nexus.plugins</groupId>
 | |
|       <artifactId>nexus-repository-raw</artifactId>
 | |
|       <version>${nx-version}</version>
 | |
|     </dependency>
 | |
|     <dependency>
 | |
|       <groupId>org.sonatype.nexus.plugins</groupId>
 | |
|       <artifactId>nexus-script-plugin</artifactId>
 | |
|       <version>${nx-version}</version>
 | |
|     </dependency>
 | |
|     <dependency>
 | |
|       <groupId>org.sonatype.nexus.plugins</groupId>
 | |
|       <artifactId>nexus-ldap-plugin</artifactId>
 | |
|       <version>${nx-version}</version>
 | |
|       <scope>system</scope>
 | |
|       <systemPath>${project.basedir}/binaries/system/com/sonatype/nexus/plugins/nexus-ldap-plugin/${nx-version}/nexus-ldap-plugin-${nx-version}.jar</systemPath>
 | |
|     </dependency>
 | |
|   </dependencies>
 | |
| </project> |