Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
Split eptcomputing neo4j-resources library into separate repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Kleppmann committed Jun 12, 2009
1 parent 1d12ff9 commit b5e1c6f
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 336 deletions.
2 changes: 1 addition & 1 deletion .project
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>neo4j-scala-template</name>
<name>neo4j-resources</name>
<comment></comment>
<projects>
</projects>
Expand Down
6 changes: 0 additions & 6 deletions neo4j-shell.sh

This file was deleted.

31 changes: 6 additions & 25 deletions pom.xml
Expand Up @@ -2,16 +2,11 @@
<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>
<packaging>war</packaging>

<!--
* This is a template for new Scala projects which use the Neo4j graph database
* and expose a domain-specific REST API. Please edit the following few lines to
* match your project details.
-->
<groupId>com.example</groupId>
<artifactId>neo4j-scala-template</artifactId>
<name>neo4j-scala-template</name>
<packaging>jar</packaging>

<groupId>com.eptcomputing</groupId>
<artifactId>neo4j-resources</artifactId>
<name>neo4j-resources</name>
<version>1.0-SNAPSHOT</version>

<dependencies>
Expand Down Expand Up @@ -135,20 +130,6 @@
</executions>
</plugin>

<!-- Run the application using "mvn jetty:run" -->
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<configuration>
<contextPath>/</contextPath>
<connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>8080</port>
</connector>
</connectors>
</configuration>
</plugin>

<!-- Configure which tests should be run as part of a build -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -161,7 +142,7 @@
<include>**/*TestCase.class</include>
<include>**/*Spec.class</include>
</includes>
<argLine>-Djava.endorsed.dirs=${settings.localRepository}/javax/xml/bind/jaxb-api/2.1 -Dneo4j.config=src/main/webapp/WEB-INF/neo4j.properties -Dneo4j.env=test</argLine>
<argLine>-Djava.endorsed.dirs=${settings.localRepository}/javax/xml/bind/jaxb-api/2.1 -Dneo4j.config=src/test/resources/neo4j.properties -Dneo4j.env=test</argLine>
</configuration>
</plugin>
</plugins>
Expand Down
13 changes: 0 additions & 13 deletions src/main/java/com/example/model/Predicates.java

This file was deleted.

13 changes: 0 additions & 13 deletions src/main/scala/com/example/InitServlet.scala

This file was deleted.

17 changes: 0 additions & 17 deletions src/main/scala/com/example/models/Moo.scala

This file was deleted.

7 changes: 0 additions & 7 deletions src/main/scala/com/example/restapi/ExampleNeoResource.scala

This file was deleted.

133 changes: 0 additions & 133 deletions src/main/scala/com/example/restapi/Moo.scala

This file was deleted.

14 changes: 0 additions & 14 deletions src/main/scala/com/example/restapi/Resources.scala

This file was deleted.

28 changes: 0 additions & 28 deletions src/main/scala/com/example/restapi/Root.scala

This file was deleted.

36 changes: 0 additions & 36 deletions src/main/webapp/WEB-INF/neo4j.properties

This file was deleted.

26 changes: 0 additions & 26 deletions src/main/webapp/WEB-INF/web.xml

This file was deleted.

8 changes: 8 additions & 0 deletions src/test/resources/neo4j.properties
@@ -0,0 +1,8 @@
# Neo4j configuration - used for test only

# WARNING: The test database gets wiped clean every time you do `mvn test`!

neo4j.test.path = /tmp/neo4j_resources_test
neo4j.test.shell.enabled = false
neo4j.test.destroy_on_startup = true

17 changes: 0 additions & 17 deletions src/test/scala/com/example/Dummy.scala

This file was deleted.

0 comments on commit b5e1c6f

Please sign in to comment.