mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +00:00
155a9fbc78
core and everything else will come in transitively o rolling things back to use the 2.0 release maven artifacts, i can subsequently, deploy 2.0.1-SNAPSHOTs and when 2.0.1 is released I will release 2.0.1 of the embedder. I think the releases of the embedder must follow closely on the heels of Maven itself. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@330845 13f79535-47bb-0310-9956-ffa450edef68
10 lines
168 B
Bash
Executable File
10 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mvn clean:clean assembly:assembly
|
|
|
|
CLASSPATH=target/maven-embedder-2.0-dep.jar
|
|
|
|
javac -classpath $CLASSPATH Plugin.java
|
|
|
|
java -classpath $CLASSPATH:. Plugin
|