All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ct.actorframe-cldc.1.0.2.source-code.pom.xml Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
<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">
  <parent>
    <groupId>org.coosproject</groupId>
    <artifactId>actorframe</artifactId>
    <version>1.0.2</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>

  <groupId>org.coosproject</groupId>
  <artifactId>actorframe-cldc</artifactId>
  <name>Actorframe CLDC library</name>

  <build>
    <defaultGoal>install</defaultGoal>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <executions>
          <execution>
            <id>add-source</id>
            <phase>generate-sources</phase>
            <goals>
              <goal>add-source</goal>
            </goals>
            <configuration>
              <sources>
                <source>../commonplatform/src/main/java</source>
              </sources>
            </configuration>
          </execution>
          <execution>
            <id>attach-artifact</id>
            <phase>noPhase</phase>
            <goals>
              <goal>attach-artifact</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <compilerArguments>
            <bootclasspath>${env.WTK_HOME}/lib/cldcapi11.jar${path.separator}${env.WTK_HOME}/lib/midpapi20.jar</bootclasspath>
          </compilerArguments>
          <source>1.3</source>
          <target>1.1</target>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>org.coosproject</groupId>
      <artifactId>util-cldc</artifactId>
      <version>1.0.2</version>
    </dependency>
    <dependency>
      <groupId>org.microemu</groupId>
      <artifactId>microemulator</artifactId>
      <version>${me2Version}</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>

  <properties>
    <wtk.home>${env.WTK_HOME}</wtk.home>
    <j2me.midlet.profile>MIDP-2.0</j2me.midlet.profile>
    <j2me.midlet.configuration>CLDC-1.1</j2me.midlet.configuration>
    <j2me.midlet.version>1.0-SNAPSHOT</j2me.midlet.version>
    <j2me.midlet.name>${project.name}</j2me.midlet.name>
    <j2me.midlet.vendor>${project.organization.name}</j2me.midlet.vendor>
    <me2Version>2.0.1</me2Version>
  </properties>
</project>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy