Skip to content

Commit

Permalink
Added maven pom.xml to edit groovy scripts with classpath completion
Browse files Browse the repository at this point in the history
  • Loading branch information
samherve committed Sep 20, 2016
1 parent 0a4a71f commit 999007f
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?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>com.example.automation</groupId>
<artifactId>nexus-script-demo</artifactId>
<version>1.0-SNAPSHOT</version>
<description>Fake project meant to be imported in an IDE (IntelliJ) to edit groovy scripts with classpath-aware completion</description>

<properties>
<nx-version>3.0.2-02</nx-version>
</properties>
<build>
<sourceDirectory>templates/groovy</sourceDirectory>
</build>
<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.plugins</groupId>
<artifactId>nexus-script-plugin</artifactId>
<version>${nx-version}</version>
</dependency>
</dependencies>
</project>

0 comments on commit 999007f

Please sign in to comment.