Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6403e91

Browse files
committedJun 27, 2017
run build
1 parent 8326f0e commit 6403e91

File tree

1 file changed

+18
-15
lines changed

1 file changed

+18
-15
lines changed
 

‎pom.xml

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,23 @@
7777

7878
</dependencies>
7979
<build>
80+
<directory>${project.basedir}/target</directory>
81+
<outputDirectory>${project.build.directory}/classes</outputDirectory>
82+
<finalName>${project.artifactId}-${project.version}</finalName>
83+
<testOutputDirectory>${project.build.directory}/test-classes</testOutputDirectory>
84+
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
85+
<testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory>
86+
<resources>
87+
<resource>
88+
<directory>${project.basedir}/src/main/resources</directory>
89+
</resource>
90+
</resources>
91+
<testResources>
92+
<testResource>
93+
<directory>${project.basedir}/src/test/resources</directory>
94+
</testResource>
95+
</testResources>
96+
8097
<plugins>
8198
<plugin>
8299
<groupId>org.apache.maven.plugins</groupId>
@@ -148,21 +165,7 @@
148165
</execution>
149166
</executions>
150167
</plugin>
151-
<plugin>
152-
<groupId>net.nicoulaj.maven.plugins</groupId>
153-
<artifactId>checksum-maven-plugin</artifactId>
154-
<version>1.5</version>
155-
<executions>
156-
<execution>
157-
<goals>
158-
<goal>artifacts</goal>
159-
</goals>
160-
</execution>
161-
</executions>
162-
<configuration>
163-
<!-- put your configurations here -->
164-
</configuration>
165-
</plugin>
168+
166169
</plugins>
167170
</build>
168171
<distributionManagement>

0 commit comments

Comments
 (0)
Please sign in to comment.