java-runtime
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.codenameone</groupId> <artifactId>java-runtime</artifactId> <version>7.0.196</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <parent> <groupId>com.codenameone</groupId> <artifactId>codenameone</artifactId> <version>7.0.196</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.codenameone</groupId> <artifactId>java-runtime</artifactId> <version>7.0.196</version> <packaging>jar</packaging> <name>java-runtime</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>6</maven.compiler.source> <maven.compiler.target>6</maven.compiler.target> <src.dir>../../Ports/CLDC11/src</src.dir> </properties> <build> <sourceDirectory>${src.dir}</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> </project>