Skip to content

Commit

Permalink
Create a "without-persistence" profile
Browse files Browse the repository at this point in the history
see #109
  • Loading branch information
bertfrees committed Jan 2, 2019
1 parent 270bb6d commit 0aaa98d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ check : check-docker
check-docker :
bash src/test/resources/test-docker-image.sh

.PHONY : --without-persistence
--without-persistence : -Pwithout-persistence

# generate-resources process-resources prepare-package package
# --------------- ----------------- --------------- -------
# unpack-cli-mac unpack-cli-mac
Expand Down Expand Up @@ -196,6 +199,7 @@ PROFILES := \
unpack-updater-mac \
unpack-updater-win \
unpack-updater-gui-win \
without-persistence \
dev-launcher

.PHONY : mvn
Expand Down
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2590,6 +2590,26 @@
</plugins>
</build>
</profile>
<profile>
<id>without-persistence</id>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-persistence-libs-bundles</id>
<phase>none</phase>
</execution>
<execution>
<id>copy-persistence-pipeline-bundles</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>test-batch</id>
<activation>
Expand Down

0 comments on commit 0aaa98d

Please sign in to comment.