Skip to content

Commit

Permalink
Merge pull request #65 from NicolasAnquetil/v3
Browse files Browse the repository at this point in the history
New organization for famix stuff
  • Loading branch information
badetitou authored Jan 20, 2023
2 parents 17c38b0 + 0b40539 commit 76a54c0
Show file tree
Hide file tree
Showing 528 changed files with 1,472 additions and 88,217 deletions.
2 changes: 2 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="src" path="resources"/>
<classpathentry kind="lib" path="lib/akuhn-util-r28011.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="lib" path="lib/org.eclipse.core.contenttype_3.6.0.v20170207-1037.jar"/>
Expand Down
27 changes: 12 additions & 15 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<!-- Sets variables which can later be used. -->
<!-- The value of a property is accessed via ${} -->
<property name="src.dir" location="src" />
<property name="gensrc.dir" location="gen" />
<property name="testsrc.dir" location="tests" />
<property name="build.dir" location="bin" />
<property name="docs.dir" location="docs" />
Expand All @@ -26,6 +27,13 @@
</target>

<target name="compile" depends="clean, makedir">
<javac srcdir="${gensrc.dir}" destdir="${build.dir}" source="17" target="17" includeantruntime="false" debug="true" debuglevel="lines,vars,source">
<classpath>
<fileset dir="${dist.dir}">
<include name="*.jar"/>
</fileset>
</classpath>
</javac>
<javac srcdir="${src.dir}" destdir="${build.dir}" source="17" target="17" includeantruntime="false" debug="true" debuglevel="lines,vars,source">
<classpath>
<fileset dir="${dist.dir}">
Expand Down Expand Up @@ -65,7 +73,7 @@
<target name="rebuild">
<jar destfile="${verveine.jar}"
basedir="${build.dir}"
includes="fr/inria/verveine/extractor/java/*.class"
includes="**/*.class"
/>
</target>

Expand All @@ -78,8 +86,8 @@
</fileset>
</classpath>

<formatter type="xml"/>
<formatter type="plain" usefile="false" />
<formatter type="plain"/>

<batchtest fork="yes" todir="${test.report.dir}">
<fileset dir="${testsrc.dir}">
Expand All @@ -98,7 +106,6 @@
<include name="*.jar"/>
</fileset>
</classpath>
<formatter type="plain"/>
<formatter type="xml" />

<batchtest fork="yes" todir="${test.report.dir}">
Expand All @@ -110,17 +117,7 @@
</junit>
</target>

<!-- Run JUnit TestLAN -->
<target name="test_lan">
<junit printsummary="on" fork="true" haltonfailure="true" haltonerror="true">
<classpath>
<fileset dir="${dist.dir}">
<include name="*.jar"/>
</fileset>
</classpath>
<formatter type="plain" />
<test name="tests.fr.inria.verveine.extractor.java.VerveineJTest_LanModel" todir="${test.report.dir}" />
</junit>
</target>
<!-- synonym -->
<target name="test" depends="junit"/>

</project>
574 changes: 0 additions & 574 deletions docs/allclasses-index.html

This file was deleted.

85 changes: 0 additions & 85 deletions docs/allpackages-index.html

This file was deleted.

Loading

0 comments on commit 76a54c0

Please sign in to comment.