gde4onos/Makefile

20 lines
516 B
Makefile
Raw Normal View History

2020-05-19 19:13:18 +00:00
artifactId := $(shell cat pom.xml | grep artifactId | head -1 | cut -d\> -f2 | cut -d\< -f1)
version := $(shell cat pom.xml | grep version | grep -v '<?xml' | head -1 | cut -d\> -f2 | cut -d\< -f1)
2020-09-02 23:25:54 +00:00
plugin.oar: build
cp target/${artifactId}-${version}.oar plugin.oar
2020-05-19 19:13:18 +00:00
build:
2020-09-02 23:25:54 +00:00
mvn clean compile test package install
2020-09-04 21:57:30 +00:00
test:
mvn test
2020-09-02 23:25:54 +00:00
clean:
mvn clean
-rm plugin.oar
initial_codegen:
mvn archetype:generate -DarchetypeGroupId=org.onosproject -DarchetypeArtifactId=onos-bundle-archetype -DarchetypeVersion=2.2.2