-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from terry-norbraten/main
Clean up items
- Loading branch information
Showing
10 changed files
with
1,192 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ lib | |
.idea | ||
*.iml | ||
.ivy | ||
/nbproject/private/ | ||
/MANIFEST.MF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
<ivy-module version="2.0"> | ||
<info organisation="org.ontologyportal" module="SigmaUtils"/> | ||
<configurations> | ||
<conf name="api" description="Provide API"/> | ||
<conf name="test" extends="api" visibility="private" description="For testing our API"/> | ||
</configurations> | ||
<publications> | ||
<artifact name="filter-api" type="jar" conf="api" ext="jar"/> | ||
</publications> | ||
<dependencies> | ||
<dependency org="com.google.guava" name="guava" rev="19.0"/> | ||
<dependency org="junit" name="junit" rev="4.12"/> | ||
<dependency org="com.google.guava" name="guava" rev="19.0" conf="api->default"/> | ||
<dependency org="junit" name="junit" rev="4.13.2" conf="test->default"/> | ||
</dependencies> | ||
</ivy-module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
#app.name=sigmaUtils | ||
build.classes.excludes=**/*.java,**/*.form | ||
# This directory is removed when the project is cleaned: | ||
#build.home=build | ||
#build.classes=${build.home}/classes | ||
#build.test.classes=${build.home}/test-classes | ||
build.test.results.dir=${build.test.classes}/results | ||
# Only compile against the classpath explicitly listed here: | ||
build.sysclasspath=ignore | ||
buildfile=nbproject/ide-targets.xml | ||
# Uncomment to specify the preferred debugger connection transport: | ||
debug.transport=dt_socket | ||
debug.classpath=\ | ||
${run.classpath} | ||
debug.modulepath=\ | ||
${run.modulepath} | ||
debug.test.classpath=\ | ||
${run.test.classpath} | ||
debug.test.modulepath=\ | ||
${run.test.modulepath} | ||
# Files in build.classes.dir which should be excluded from distribution jar | ||
dist.archive.excludes= | ||
# This directory is removed when the project is cleaned: | ||
dist.dir=dist | ||
dist.jar=${dist.dir}/${app.name}.jar | ||
dist.javadoc.dir=${dist.dir}/doc/api | ||
excludes= | ||
file.reference.src-java=src/java | ||
file.reference.unit-java=test/unit/java | ||
includes=** | ||
jar.compress=false | ||
# Leverage Ivy here | ||
javac.classpath=${ant.refid:compile.classpath} | ||
# Space-separated list of extra javac options | ||
javac.compilerargs= | ||
javac.deprecation=false | ||
javac.external.vm=true | ||
#javac.release=11 | ||
javac.test.classpath=\ | ||
${javac.classpath}:\ | ||
${build.classes}:\ | ||
lib/hamcrest-core-1.3.jar:\ | ||
lib/junit-4.13.2.jar | ||
javadoc.additionalparam= | ||
javadoc.author=false | ||
javadoc.encoding=${source.encoding} | ||
javadoc.html5=false | ||
javadoc.noindex=false | ||
javadoc.nonavbar=false | ||
javadoc.notree=false | ||
javadoc.private=false | ||
javadoc.splitindex=true | ||
javadoc.use=true | ||
javadoc.version=false | ||
javadoc.windowtitle= | ||
main.class=com.articulate.sigma.utils.StringUtil | ||
manifest.mf=MANIFEST.MF | ||
platform.active=default_platform | ||
run.classpath=\ | ||
${javac.classpath}:\ | ||
${build.classes} | ||
# Space-separated list of JVM arguments used when running the project. | ||
# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. | ||
# To set system properties for unit tests define test-sys-prop.name=value: | ||
run.jvmargs= | ||
run.modulepath=\ | ||
${javac.modulepath} | ||
run.test.classpath=\ | ||
${javac.test.classpath}:\ | ||
${build.test.classes} | ||
run.test.modulepath=\ | ||
${javac.test.modulepath} | ||
source.encoding=UTF-8 | ||
src.dir=${file.reference.src-java} | ||
test.unit.dir=${file.reference.unit-java} | ||
|
||
# Specific SigmaUtils props | ||
impl.title=SigmaUtils | ||
impl.vendor.id=edu.nps.cs | ||
sumo.url=http://www.ontologyportal.org | ||
nps=Naval Postgraduate School (NPS), Monterey, CA | ||
cs.dept=Computer Science (CS) DEPT | ||
|
||
product.Name=Sigma Utilities (${impl.title}) | ||
product.version.major=1 | ||
product.version.minor=0 | ||
product.version.patch=0 | ||
product.Version=${product.version.major}.${product.version.minor}.\ | ||
${product.version.patch} | ||
spec.vendor=Adam Pease | ||
project.license=LICENSE | ||
|
||
reports.dir=${build.home}/reports | ||
report.html=file:${basedir}/${reports.dir}/html/index.html | ||
unit.test.suite=com.articulate.sigma.StringUtilTest |
Oops, something went wrong.