Skip to content

Commit

Permalink
removing the fullBuild profile
Browse files Browse the repository at this point in the history
  • Loading branch information
lassewesth committed Jan 14, 2017
1 parent 6d97658 commit efb0f9c
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 75 deletions.
3 changes: 1 addition & 2 deletions README.asciidoc
Expand Up @@ -47,7 +47,6 @@ On top of that, to build Debian packages and Neo4j Desktop:
* To add execution of integration tests, use: `mvn clean install -DrunITs`.
* In case you just want the jars, without running tests, this is for you: `mvn clean install -DskipTests`.
* To skip building the browser module, use `-DskipBrowser` (note that you might not be able to build the server without it).
* To build everything, including running all tests and assembling product packages, use `mvn clean install -DfullBuild`.
* To build product packages, do `export PATH="bin:$PATH" && make clean all` in the packaging directory after building artifacts with Maven
* To build the documentation see the link:manual/[Neo4j manual].
* When building on Windows, use `-Dlicensing.skip` to avoid problems related to line endings.
Expand All @@ -57,7 +56,7 @@ On top of that, to build Debian packages and Neo4j Desktop:

== Running Neo4j ==

After running a `mvn clean install -DfullBuild` cd into `packaging/standalone/target` and extract the version you want, then
After running a `mvn clean install` cd into `packaging/standalone/target` and extract the version you want, then

bin/neo4j start

Expand Down
59 changes: 21 additions & 38 deletions community/cypher/frontend-3.0/pom.xml
Expand Up @@ -69,6 +69,27 @@
<groupId>org.scalastyle</groupId>
<artifactId>scalastyle-maven-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>generate-dummy-javadocs-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
<excludes>
<exclude>**</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>

</plugins>
</build>

Expand Down Expand Up @@ -115,47 +136,9 @@
<groupId>org.parboiled</groupId>
<artifactId>parboiled-scala_2.11</artifactId>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

</dependencies>

<profiles>
<profile>
<id>neo-full-build-with-javadoc</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>fullBuild</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>generate-dummy-javadocs-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
<excludes>
<exclude>**</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
58 changes: 23 additions & 35 deletions enterprise/deferred-locks/pom.xml
Expand Up @@ -100,39 +100,27 @@

</dependencies>

<profiles>
<profile>
<id>neo-full-build-with-javadoc</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>fullBuild</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>generate-dummy-javadocs-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
<excludes>
<exclude>**</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>generate-dummy-javadocs-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>javadoc</classifier>
<excludes>
<exclude>**</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit efb0f9c

Please sign in to comment.