Skip to content

Commit

Permalink
Merge pull request #3 from nicolas-f/patch_android
Browse files Browse the repository at this point in the history
OpenWarble compatible with Android API 15
  • Loading branch information
nicolas-f authored Mar 23, 2018
2 parents aa2e219 + 9f993cd commit 4843494
Show file tree
Hide file tree
Showing 38 changed files with 859 additions and 51 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Mar 23 12:59:59 CET 2018
gcc-bridge-compiler-1.0.0-SNAPSHOT.pom>=
gcc-bridge-compiler-1.0.0-SNAPSHOT-sources.jar>=
gcc-bridge-compiler-1.0.0-SNAPSHOT.jar>=
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- ~ R : A Computer Language for Statistical Data Analysis ~ Copyright
(C) 1995, 1996 Robert Gentleman and Ross Ihaka ~ Copyright (C) 1997-2008
The R Development Core Team ~ Copyright (C) 2003, 2004 The R Foundation ~
Copyright (C) 2010 bedatadriven ~ ~ This program is free software: you can
redistribute it and/or modify ~ it under the terms of the GNU General Public
License as published by ~ the Free Software Foundation, either version 3
of the License, or ~ (at your option) any later version. ~ ~ This program
is distributed in the hope that it will be useful, ~ but WITHOUT ANY WARRANTY;
without even the implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the ~ GNU General Public License for more details. ~ ~ You should
have received a copy of the GNU General Public License ~ along with this
program. If not, see <http://www.gnu.org/licenses />. -->

<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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.noise-planet</groupId>
<artifactId>gcc-bridge-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>gcc-bridge-compiler</artifactId>
<name>Renjin GCC Bridge Compiler</name>
<description>Compiles C, Fortran, C++ to JVM classfiles</description>

<dependencies>
<dependency>
<groupId>org.renjin</groupId>
<artifactId>renjin-guava</artifactId>
</dependency>
<dependency>
<groupId>org.noise-planet</groupId>
<artifactId>gcc-runtime</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>io.airlift</groupId>
<artifactId>airline</artifactId>
<version>0.4</version>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.renjin</groupId>
<artifactId>renjin-asm</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.0</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
</configuration>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata modelVersion="1.1.0">
<groupId>org.noise-planet</groupId>
<artifactId>gcc-bridge-compiler</artifactId>
<version>1.0.0-SNAPSHOT</version>
<versioning>
<snapshot>
<localCopy>true</localCopy>
</snapshot>
<lastUpdated>20180323115959</lastUpdated>
<snapshotVersions>
<snapshotVersion>
<classifier>sources</classifier>
<extension>jar</extension>
<value>1.0.0-SNAPSHOT</value>
<updated>20180323115959</updated>
</snapshotVersion>
<snapshotVersion>
<extension>jar</extension>
<value>1.0.0-SNAPSHOT</value>
<updated>20180323115958</updated>
</snapshotVersion>
<snapshotVersion>
<extension>pom</extension>
<value>1.0.0-SNAPSHOT</value>
<updated>20180323115958</updated>
</snapshotVersion>
</snapshotVersions>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>org.noise-planet</groupId>
<artifactId>gcc-bridge-compiler</artifactId>
<versioning>
<versions>
<version>1.0.0-SNAPSHOT</version>
</versions>
<lastUpdated>20180323115959</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Mar 23 11:52:45 CET 2018
gcc-bridge-maven-plugin-1.0.0-SNAPSHOT-sources.jar>=
gcc-bridge-maven-plugin-1.0.0-SNAPSHOT.jar>=
gcc-bridge-maven-plugin-1.0.0-SNAPSHOT.pom>=
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
<project>
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.noise-planet</groupId>
<artifactId>gcc-bridge-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>gcc-bridge-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>

<name>Renjin GCC Bridge Maven Plugin</name>

<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-api</artifactId>
<version>${plexusCompilerVersion}</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.noise-planet</groupId>
<artifactId>gcc-bridge-compiler</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.renjin</groupId>
<artifactId>renjin-soot</artifactId>
<version>2.9.198</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.4</version>

<configuration>
<goalPrefix>gcc-bridge</goalPrefix>
</configuration>
<executions>
<execution>
<id>default-descriptor</id>
<goals>
<goal>descriptor</goal>
</goals>
<phase>process-classes</phase>
</execution>
<execution>
<id>help-descriptor</id>
<goals>
<goal>helpmojo</goal>
</goals>
<phase>process-classes</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<configuration>
<excludes>**/HelpMojo.java</excludes>
</configuration>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata modelVersion="1.1.0">
<groupId>org.noise-planet</groupId>
<artifactId>gcc-bridge-maven-plugin</artifactId>
<version>1.0.0-SNAPSHOT</version>
<versioning>
<snapshot>
<localCopy>true</localCopy>
</snapshot>
<lastUpdated>20180323105245</lastUpdated>
<snapshotVersions>
<snapshotVersion>
<classifier>sources</classifier>
<extension>jar</extension>
<value>1.0.0-SNAPSHOT</value>
<updated>20180323105245</updated>
</snapshotVersion>
<snapshotVersion>
<extension>jar</extension>
<value>1.0.0-SNAPSHOT</value>
<updated>20180323105245</updated>
</snapshotVersion>
<snapshotVersion>
<extension>pom</extension>
<value>1.0.0-SNAPSHOT</value>
<updated>20180323105245</updated>
</snapshotVersion>
</snapshotVersions>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>org.noise-planet</groupId>
<artifactId>gcc-bridge-maven-plugin</artifactId>
<versioning>
<latest>1.0.0-SNAPSHOT</latest>
<versions>
<version>1.0.0-SNAPSHOT</version>
</versions>
<lastUpdated>20180323105245</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Mar 23 11:50:38 CET 2018
gcc-bridge-parent-1.0.0-SNAPSHOT.pom>=
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<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">
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>renjin-tools</artifactId>
<groupId>org.noise-planet</groupId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>gcc-bridge-parent</artifactId>
<packaging>pom</packaging>
<name>Renjin GCC Bridge Parent</name>

<modules>
<module>runtime</module>
<module>compiler</module>
<module>maven-plugin</module>
</modules>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata modelVersion="1.1.0">
<groupId>org.noise-planet</groupId>
<artifactId>gcc-bridge-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<versioning>
<snapshot>
<localCopy>true</localCopy>
</snapshot>
<lastUpdated>20180323105038</lastUpdated>
<snapshotVersions>
<snapshotVersion>
<extension>pom</extension>
<value>1.0.0-SNAPSHOT</value>
<updated>20180323105038</updated>
</snapshotVersion>
</snapshotVersions>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>org.noise-planet</groupId>
<artifactId>gcc-bridge-parent</artifactId>
<versioning>
<versions>
<version>1.0.0-SNAPSHOT</version>
</versions>
<lastUpdated>20180323105038</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Mar 23 11:51:01 CET 2018
gcc-runtime-1.0.0-SNAPSHOT.pom>=
gcc-runtime-1.0.0-SNAPSHOT-sources.jar>=
gcc-runtime-1.0.0-SNAPSHOT.jar>=
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- ~ R : A Computer Language for Statistical Data Analysis ~ Copyright
(C) 1995, 1996 Robert Gentleman and Ross Ihaka ~ Copyright (C) 1997-2008
The R Development Core Team ~ Copyright (C) 2003, 2004 The R Foundation ~
Copyright (C) 2010 bedatadriven ~ ~ This program is free software: you can
redistribute it and/or modify ~ it under the terms of the GNU General Public
License as published by ~ the Free Software Foundation, either version 3
of the License, or ~ (at your option) any later version. ~ ~ This program
is distributed in the hope that it will be useful, ~ but WITHOUT ANY WARRANTY;
without even the implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the ~ GNU General Public License for more details. ~ ~ You should
have received a copy of the GNU General Public License ~ along with this
program. If not, see <http://www.gnu.org/licenses />. -->

<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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.noise-planet</groupId>
<artifactId>gcc-bridge-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<artifactId>gcc-runtime</artifactId>
<name>Renjin GCC Runtime</name>
<description>Runtime classes for code translated from GCC</description>

</project>
Loading

0 comments on commit 4843494

Please sign in to comment.