Fix classpath generation
This commit is contained in:
parent
97d1c886d6
commit
72639fdd71
1
.gitignore
vendored
1
.gitignore
vendored
@ -21,6 +21,7 @@ broker/core/module/MOD-INF/classes/
|
|||||||
broker/core/WEB-INF/lib/
|
broker/core/WEB-INF/lib/
|
||||||
broker/core/data/
|
broker/core/data/
|
||||||
broker/core/test-output/
|
broker/core/test-output/
|
||||||
|
server/classpath.txt
|
||||||
tmp/
|
tmp/
|
||||||
/test-output
|
/test-output
|
||||||
test-out/
|
test-out/
|
||||||
|
@ -73,17 +73,17 @@
|
|||||||
</suiteXmlFiles>
|
</suiteXmlFiles>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
|
<version>3.1.1</version>
|
||||||
|
<configuration>
|
||||||
|
<skip>true</skip>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-dependency-plugin</artifactId>
|
|
||||||
<version>3.1.1</version>
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
</build>
|
</build>
|
||||||
|
4
refine
4
refine
@ -330,7 +330,7 @@ mvn_prepare() {
|
|||||||
classpath_prepare() {
|
classpath_prepare() {
|
||||||
mvn_prepare
|
mvn_prepare
|
||||||
|
|
||||||
$MVN -pl server dependency:build-classpath
|
$MVN compile dependency:build-classpath
|
||||||
}
|
}
|
||||||
|
|
||||||
appengine_prepare() {
|
appengine_prepare() {
|
||||||
@ -647,7 +647,7 @@ run() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -e "server/classpath.txt" ] ; then
|
if [ ! -e "server/classpath.txt" ] ; then
|
||||||
mvn dependency:build-classpath
|
mvn compile dependency:build-classpath
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d $REFINE_CLASSES_DIR ] ; then
|
if [ -d $REFINE_CLASSES_DIR ] ; then
|
||||||
|
Loading…
Reference in New Issue
Block a user