Skip to content

Commit

Permalink
- .classpath, .project, .settings/org.eclipse.jdt.core.prefsは,
Browse files Browse the repository at this point in the history
   mvn eclipse:eclipseコマンドから生成できるのでバージョン管理対象から外した
- build.xmlを削除
- DODDLEComponent.owlとontology_templatesをresourcesフォルダにコピーするようにした
- mvn exec:javaでDODDLEを起動できるように設定
  • Loading branch information
t-morita committed Jan 25, 2010
1 parent 2783be3 commit cfe7592
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 131 deletions.
34 changes: 0 additions & 34 deletions .classpath

This file was deleted.

13 changes: 0 additions & 13 deletions .project

This file was deleted.

12 changes: 0 additions & 12 deletions .settings/org.eclipse.jdt.core.prefs

This file was deleted.

71 changes: 0 additions & 71 deletions build.xml

This file was deleted.

13 changes: 12 additions & 1 deletion pom.xml
Expand Up @@ -97,6 +97,18 @@
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<!-- mvn exec:java -->
<configuration>
<commandlineArgs></commandlineArgs>
<mainClass>jp.ac.keio.ae.comp.yamaguti.doddle.DODDLE</mainClass>
<!--
<mainClass>jp.ac.keio.ae.comp.yamaguti.doddle.ui.DODDLEDicConverterUI</mainClass>
-->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down Expand Up @@ -172,7 +184,6 @@
<name>DODDLE_DIC_Converter</name>
</program>
</programs>

</configuration>
<executions>
<execution>
Expand Down
11 changes: 11 additions & 0 deletions src/main/assembly/descriptor-bin.xml
Expand Up @@ -15,6 +15,17 @@
<directory>src/main/resources</directory>
<outputDirectory>resources</outputDirectory>
</fileSet>
<fileSet>
<directory>src/main/java/jp/ac/keio/ae/comp/yamaguti/doddle/resources</directory>
<outputDirectory>resources</outputDirectory>
<includes>
<include>*.owl</include>
</includes>
</fileSet>
<fileSet>
<directory>src/main/java/jp/ac/keio/ae/comp/yamaguti/doddle/resources/ontology_templates</directory>
<outputDirectory>resources/ontology_templates</outputDirectory>
</fileSet>
<fileSet>
<directory>target/site/apidocs</directory>
<outputDirectory>apidocs</outputDirectory>
Expand Down

0 comments on commit cfe7592

Please sign in to comment.