mirror of https://github.com/qos-ch/slf4j
remove and ignore gen; prepare project for production use
This commit is contained in:
parent
463e3d4663
commit
c58b252795
|
|
@ -10,5 +10,5 @@ As slf4j-jdk14, slf4j-log4j etc. slf4j-android is a maven module that depends on
|
|||
so it can easily be built with maven and synced with [the original slf4j codebase](https://github.com/qos-ch/slf4j).
|
||||
|
||||
### Status
|
||||
The implementation is currently fully functional but has not yet been fully tested in a
|
||||
production environment. Let us know if you have used it in production!
|
||||
The implementation is currently fully functional and has been fully tested in a
|
||||
production environment.
|
||||
|
|
@ -2,6 +2,7 @@
|
|||
/.settings
|
||||
/.classpath
|
||||
/.project
|
||||
/gen
|
||||
.DS_Store
|
||||
*.iml
|
||||
*.ipr
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.slf4j"
|
||||
android:versionCode="1"
|
||||
android:versionName="1.0">
|
||||
android:versionCode="174"
|
||||
android:versionName="1.7.4">
|
||||
<uses-sdk android:minSdkVersion="3" />
|
||||
</manifest>
|
||||
|
|
@ -10,4 +10,3 @@
|
|||
android.library=true
|
||||
# Project target.
|
||||
target=android-3
|
||||
apk-configurations=
|
||||
|
|
|
|||
|
|
@ -1,8 +0,0 @@
|
|||
/*___Generated_by_IDEA___*/
|
||||
|
||||
/** Automatically generated file. DO NOT MODIFY */
|
||||
package org.slf4j;
|
||||
|
||||
public final class BuildConfig {
|
||||
public final static boolean DEBUG = true;
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
/*___Generated_by_IDEA___*/
|
||||
|
||||
package org.slf4j;
|
||||
|
||||
/* This stub is for using by IDE only. It is NOT the Manifest class actually packed into APK */
|
||||
public final class Manifest {
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
/*___Generated_by_IDEA___*/
|
||||
|
||||
package org.slf4j;
|
||||
|
||||
/* This stub is for using by IDE only. It is NOT the R class actually packed into APK */
|
||||
public final class R {
|
||||
}
|
||||
|
|
@ -1,5 +1,4 @@
|
|||
<project
|
||||
xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
<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">
|
||||
|
||||
|
|
@ -32,14 +31,6 @@
|
|||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
<type>test-jar</type>
|
||||
<version>${project.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.google.android</groupId>
|
||||
<artifactId>android</artifactId>
|
||||
|
|
@ -66,7 +57,7 @@
|
|||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<!-- Google Android requires class compatibility set to 5.0. -->
|
||||
<!-- Google Android requires class compatibility set to 5.0 -->
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
|
|
|
|||
Loading…
Reference in New Issue