1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
maven.repo.remote=http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/maven
maven.xdoc.date=left
maven.xdoc.version=${pom.currentVersion}
# use toplevel checkstyle configuration
maven.checkstyle.properties=${basedir}/../conf/clirr_checks.xml
maven.checkstyle.header.file=${basedir}/../conf/javaheader.txt
maven.checkstyle.fail.on.violation=true
# include api overview page, will work only with Maven version > 1.0-rc1
maven.javadoc.overview=${pom.build.sourceDirectory}/net/sf/clirr/overview.html
# use the toplevel license file in subproject
maven.license.licenseFile=${basedir}/../LICENSE.txt
# hide irrelevant stuff from the nav bar
maven.xdoc.poweredby.image=
maven.xdoc.developmentProcessUrl=
maven.junit.fork=true
# tell tests where testinput is
maven.junit.sysproperties=testinput
testinput=${basedir}/target/testinput
# class to execute from all-in-one javaapp
maven.javaapp.mainclass=net.sf.clirr.cli.Clirr
maven.javaapp.type=uber
# used by test pregoal to generate test input, see maven.xml
clirr.testlibs=testlib-v1, testlib-v2
|