Skip to content

Commit

Permalink
removing install4j collateral from Neo4j Desktop Maven module
Browse files Browse the repository at this point in the history
making packaging a first class thing because it no longer takes much time to run
making dependencies explicit around the place
  • Loading branch information
lassewesth committed Jan 13, 2017
1 parent 9ca39ff commit bf365a5
Show file tree
Hide file tree
Showing 18 changed files with 40 additions and 3,153 deletions.
10 changes: 10 additions & 0 deletions community/bolt/pom.xml
Expand Up @@ -116,5 +116,15 @@
<version>RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-security</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
6 changes: 6 additions & 0 deletions community/neo4j-harness/pom.xml
Expand Up @@ -122,5 +122,11 @@
<type>test-jar</type>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
7 changes: 6 additions & 1 deletion enterprise/backup/pom.xml
Expand Up @@ -6,7 +6,7 @@
<version>3.0.9-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<groupId>org.neo4j</groupId>

<artifactId>neo4j-backup</artifactId>
<version>3.0.9-SNAPSHOT</version>

Expand Down Expand Up @@ -111,5 +111,10 @@
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
7 changes: 6 additions & 1 deletion enterprise/ha/pom.xml
Expand Up @@ -7,7 +7,7 @@
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.neo4j</groupId>

<artifactId>neo4j-ha</artifactId>
<name>Neo4j - High Availability</name>
<version>3.0.9-SNAPSHOT</version>
Expand Down Expand Up @@ -189,5 +189,10 @@
<artifactId>commons-io</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
10 changes: 9 additions & 1 deletion packaging/neo4j-desktop/pom.xml
Expand Up @@ -20,7 +20,6 @@

<properties>
<neo4j.version>${project.version}</neo4j.version>
<config.destination>${project.build.outputDirectory}/org/neo4j/desktop/config/</config.destination>
</properties>

<dependencies>
Expand Down Expand Up @@ -58,6 +57,15 @@
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<build>
Expand Down
6 changes: 0 additions & 6 deletions packaging/neo4j-desktop/src/main/distribution/.directory

This file was deleted.

0 comments on commit bf365a5

Please sign in to comment.