Newer
Older
AnchorGarden_M / pom.xml
@motoki miura motoki miura on 21 Jun 2022 3 KB use package?
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>jaist.AnchorGarden</groupId>
  <artifactId>AnchorGarden_M</artifactId>
  <packaging>jar</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>AnchorGarden_M</name>
  <url>http://maven.apache.org</url>

  <properties>
    <jdk.version>11</jdk.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.build.targetEncoding>UTF-8</project.build.targetEncoding>
    <maven.compiler.source>11</maven.compiler.source>
    <maven.compiler.target>11</maven.compiler.target>
  </properties>

  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.2.1</version>
        <configuration>
          <mainClass>jaist.css.covis.AnchorGarden</mainClass>
        </configuration>
      </plugin>

      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>

          <!-- 成果物の名前にassemblyがidを振ってしまうのを無効にする -->
          <appendAssemblyId>false</appendAssemblyId>
          <descriptors>
            <!-- include/excludeなどの設定は外部ファイルに記述する -->
            <descriptor>assembly.xml</descriptor>
          </descriptors>

          <archive>
            <manifest>
              <mainClass>jaist.css.covis.AnchorGarden</mainClass>
            </manifest>
            <manifestEntries>
              <Permissions>all-permissions</Permissions>
              <Class-Path>.</Class-Path>
            </manifestEntries>
          </archive>
          <!-- <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef> 
            <descriptorRef>bin</descriptorRef>
          </descriptorRefs> -->


        </configuration>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>org.piccolo2d</groupId>
      <artifactId>piccolo2d-core</artifactId>
      <version>3.0.1</version>
      <!-- <type>bundle</type> -->
    </dependency>
    <dependency>
      <groupId>org.piccolo2d</groupId>
      <artifactId>piccolo2d-examples</artifactId>
      <version>3.0.1</version>
      <!-- <type>bundle</type> -->
    </dependency>
    <dependency>
      <groupId>org.piccolo2d</groupId>
      <artifactId>piccolo2d-extras</artifactId>
      <version>3.0.1</version>
      <!-- <type>bundle</type> -->
    </dependency>
    <!-- <dependency>
      <groupId>net.sf.josql</groupId>
      <artifactId>josql</artifactId>
      <version>2.2</version>
    </dependency>
    <dependency>
      <groupId>net.sf.josql</groupId>
      <artifactId>gentlyweb-utils</artifactId>
      <version>1.5</version>
    </dependency> -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>


</project>