Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
nawroth committed May 1, 2012
0 parents commit 338c7f4
Show file tree
Hide file tree
Showing 13 changed files with 840 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.classpath
.project
.settings
.idea
target
*.iml
6 changes: 6 additions & 0 deletions example-freeze/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.classpath
.project
.settings
.idea
target
*.iml
33 changes: 33 additions & 0 deletions example-freeze/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>ease-maven-plugin-parent</artifactId>
<groupId>org.neo4j.build.plugins</groupId>
<version>1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>ease-example-freeze</artifactId>
<name>example-freeze</name>

<build>
<plugins>
<plugin>
<artifactId>ease-maven-plugin</artifactId>
<groupId>org.neo4j.build.plugins</groupId>
<version>${project.version}</version>
<executions>
<execution>
<id>freeze-artifacts</id>
<goals>
<goal>freeze</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package org.neo4j.build.plugins.ease.example.freeze;

/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}
6 changes: 6 additions & 0 deletions example-thaw/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.classpath
.project
.settings
.idea
target
*.iml
43 changes: 43 additions & 0 deletions example-thaw/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<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>
<parent>
<artifactId>ease-maven-plugin-parent</artifactId>
<groupId>org.neo4j.build.plugins</groupId>
<version>1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>ease-example-thaw</artifactId>
<packaging>pom</packaging>

<dependencies>
<dependency>
<groupId>org.neo4j.build.plugins</groupId>
<artifactId>ease-example-freeze</artifactId>
<version>1-SNAPSHOT</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>ease-maven-plugin</artifactId>
<groupId>org.neo4j.build.plugins</groupId>
<version>${project.version}</version>
<executions>
<execution>
<id>thaw-artifacts</id>
<goals>
<goal>thaw</goal>
</goals>
<configuration>
<groupIds>
<groupId>org.neo4j.build.plugins</groupId>
</groupIds>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
6 changes: 6 additions & 0 deletions plugin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.classpath
.project
.settings
.idea
target
*.iml
Loading

0 comments on commit 338c7f4

Please sign in to comment.