<artifactId>ovsdb.northbound</artifactId>
<version>0.5.0-SNAPSHOT</version>
</dependency>
-
- <!-- openflowplugin -->
- <dependency>
- <groupId>org.opendaylight.openflowplugin</groupId>
- <artifactId>openflowplugin</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
-
- <!-- openflowjava -->
- <dependency>
- <groupId>org.opendaylight.openflowjava</groupId>
- <artifactId>openflow-protocol-impl</artifactId>
- <version>0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.opendaylight.openflowjava</groupId>
- <artifactId>openflow-protocol-api</artifactId>
- <version>0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.opendaylight.openflowjava</groupId>
- <artifactId>openflow-protocol-spi</artifactId>
- <version>0.1-SNAPSHOT</version>
- </dependency>
</dependencies>
<build>
<resources>
<fileSet>
<directory>${project.build.directory}/generated-resources</directory>
<outputDirectory>/</outputDirectory>
- <excludes>
- <exclude>opendaylight/run.sh</exclude>
- </excludes>
</fileSet>
</fileSets>
- <files>
- <file>
- <source>${project.build.directory}/generated-resources/opendaylight/run.sh</source>
- <outputDirectory>/opendaylight/</outputDirectory>
- <destName>run.internal.sh</destName>
- <fileMode>0755</fileMode>
- </file>
- <file>
- <source>${basedir}/src/assemble/resources/run.sh</source>
- <outputDirectory>/opendaylight/</outputDirectory>
- <fileMode>0755</fileMode>
- </file>
- </files>
</assembly>
+++ /dev/null
-#!/bin/bash
-
-CONTROLLER_RUNSH=`echo $0|sed "s;run.sh;run.internal.sh;"`
-OF_FILTER=
-
-function usage {
- $CONTROLLER_RUNSH -help | sed 's/\[-help\]/\[-help\] \[-of13\]/' | sed "s;$CONTROLLER_RUNSH;$0;"
- exit 1
-}
-
-OF13=0
-while true ; do
- (( i += 1 ))
- case "${@:$i:1}" in
- -of13) OF13=1 ;;
- -help) usage ;;
- "") break ;;
- esac
-done
-
-# OF Filter selection
-OF_FILTER="^(?!org.opendaylight.(openflowplugin|openflowjava)).*"
-if [ $OF13 -ne 0 ]; then
- OF_FILTER="^(?!org.opendaylight.controller.(thirdparty.org.openflow|protocol_plugins.openflow)).*"
-fi
-
-NEWARGS=`echo $@|sed 's/-of13//'`
-
-$CONTROLLER_RUNSH -Dfelix.fileinstall.filter="$OF_FILTER" $NEWARGS