Skip to content
Commits on Source (27)
target
jcodings.iml
.idea/
<?xml version="1.0" encoding="UTF-8"?>
<extensions>
<extension>
<groupId>io.takari.polyglot</groupId>
<artifactId>polyglot-yaml</artifactId>
<version>0.3.0</version>
</extension>
</extensions>
language: java
jdk:
- openjdk8
- openjdk9
script: mvn test
<?xml version="1.0" ?>
<project name="JCodings" default="build">
<property name="src.dir" value="src" />
<property name="bin.dir" value="target/classes" />
<property name="dist.dir" value="target" />
<property name="jar.name" value="jcodings.jar" />
<target name="clean">
<delete dir="${bin.dir}" />
<delete dir="${dist.dir}" />
</target>
<target name="compile">
<mkdir dir="${bin.dir}" />
<javac srcdir="${src.dir}" destdir="${bin.dir}"/>
</target>
<target name="build" depends="compile">
<mkdir dir="${dist.dir}" />
<tstamp>
<format property="buildDate" pattern="yyyy-MM-dd" />
<format property="buildTime" pattern="HH:mm:ss" />
</tstamp>
<jar destfile="${dist.dir}/${jar.name}" manifest="MANIFEST.MF">
<fileset dir="${bin.dir}" />
<manifest>
<attribute name="Built-By" value="${user.name}" />
<attribute name="Built-Date" value="${buildDate}" />
<attribute name="Built-Time" value="${buildTime}" />
</manifest>
</jar>
</target>
</project>
jcodings (1.0.34-1) unstable; urgency=medium
* New upstream release
* debian/patches
- refresh patch
-- Hideki Yamane <henrich@debian.org> Mon, 17 Sep 2018 18:54:20 +0900
jcodings (1.0.32-1) unstable; urgency=medium
* New upstream release
......
Description: avoid unnecessary dependency to deal with FTBFS
Author: Hideki Yamane <henrich@debian.org>
Forwarded: not-needed
Last-Update: 2014-01-15
--- jcodings-1.0.11.orig/pom.xml
+++ jcodings-1.0.11/pom.xml
@@ -9,12 +9,6 @@
Byte based encoding support library for java
</description>
Last-Update: 2018-09-17
--- a/pom.xml
+++ b/pom.xml
@@ -6,11 +6,6 @@
<version>1.0.34</version>
<name>JCodings</name>
<description>Byte based encoding support library for java</description>
- <parent>
- <groupId>org.sonatype.oss</groupId>
- <artifactId>oss-parent</artifactId>
- <version>7</version>
- </parent>
-
<issueManagement>
<system>Github</system>
<url>https://github.com/jruby/jcodings/issues</url>
<licenses>
<license>
<name>MIT License</name>
<?xml version="1.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">
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.jruby.jcodings</groupId>
<artifactId>jcodings</artifactId>
<version>1.0.32</version>
<version>1.0.34</version>
<name>JCodings</name>
<description>
Byte based encoding support library for java
</description>
<description>Byte based encoding support library for java</description>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<issueManagement>
<system>Github</system>
<url>https://github.com/jruby/jcodings/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/jruby/jcodings.git</connection>
<developerConnection>scm:git:git@github.com:jruby/jcodings.git</developerConnection>
<url>https://github.com/jruby/jcodings</url>
</scm>
<licenses>
<license>
<name>MIT License</name>
......@@ -33,15 +18,28 @@
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>lopex</id>
<name>Marcin Mielzynski</name>
<email>lopx@gazeta.pl</email>
</developer>
<developer>
<id>headius</id>
<name>Charles Oliver Nutter</name>
<email>headius@headius.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/jruby/jcodings.git</connection>
<developerConnection>scm:git:git@github.com:jruby/jcodings.git</developerConnection>
<url>https://github.com/jruby/jcodings</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/jruby/jcodings/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
......@@ -50,12 +48,10 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<scriptSourceDirectory>scripts</scriptSourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<finalName>jcodings</finalName>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
......@@ -63,41 +59,30 @@
<version>2.1</version>
</extension>
</extensions>
<resources>
<resource>
<filtering>false</filtering>
<directory>resources</directory>
</resource>
</resources>
<finalName>jcodings</finalName>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<quiet>true</quiet>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<id>default-compile</id>
<configuration>
<source>1.7</source>
<target>1.7</target>
<excludes>
<exclude>module-info.java</exclude>
</excludes>
</configuration>
</execution>
</executions>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
......@@ -115,7 +100,6 @@
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
<configuration>
......@@ -123,10 +107,62 @@
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>resources</directory>
</resource>
</resources>
</build>
<profiles>
<profile>
<id>release-on-9</id>
<activation>
<jdk>9</jdk>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>compile9</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<release>9</release>
<includes>
<include>module-info.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<quiet>true</quiet>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
open module org.jruby.jcodings {
exports org.jcodings;
exports org.jcodings.ascii;
exports org.jcodings.constants;
exports org.jcodings.exception;
exports org.jcodings.specific;
exports org.jcodings.spi;
exports org.jcodings.transcode;
exports org.jcodings.transcode.specific;
exports org.jcodings.unicode;
exports org.jcodings.util;
}
\ No newline at end of file