Andreas Tille pushed to branch upstream at Debian Med / libkmlframework-java


Commits:
3eaf456e by Andreas Tille at 2019-01-08T15:08:50Z
New upstream version 0.0+git20150825.a2e0518
- - - - -
9f90f239 by Andreas Tille at 2019-01-08T15:24:45Z
New upstream version 0.0.git20150825.a2e0518
- - - - -


12 changed files:

- + .classpath
- + .project
- + README.md
- + build.xml
- + lib/ant-googlecode-0.0.1.jar
- + lib/commons-logging.jar
- + lib/javax.servlet.jar
- + lib/urlrewrite-2.6.0.jar
- + lib/xom-1.0.jar
- + lib/xpp3-1.1.3.4.O.jar
- + lib/xpp3_min-1.1.3.4.O.jar
- + lib/xpp3_xpath-1.1.3.4.O.jar


Changes:

=====================================
.classpath
=====================================
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+       <classpathentry kind="src" path="src"/>
+       <classpathentry kind="con" 
path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+       <classpathentry kind="lib" path="lib/javax.servlet.jar"/>
+       <classpathentry kind="lib" path="lib/urlrewrite-2.6.0.jar"/>
+       <classpathentry kind="lib" path="lib/ant-googlecode-0.0.1.jar"/>
+       <classpathentry kind="output" path="bin"/>
+</classpath>


=====================================
.project
=====================================
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+       <name>kmlframework</name>
+       <comment></comment>
+       <projects>
+       </projects>
+       <buildSpec>
+               <buildCommand>
+                       <name>org.eclipse.jdt.core.javabuilder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
+       </buildSpec>
+       <natures>
+               <nature>org.eclipse.jdt.core.javanature</nature>
+       </natures>
+</projectDescription>


=====================================
README.md
=====================================
@@ -0,0 +1,2 @@
+# kmlframework
+Automatically exported from code.google.com/p/kmlframework


=====================================
build.xml
=====================================
@@ -0,0 +1,84 @@
+<?xml version="1.0"?>
+<project name="kmlframework" default="jar" basedir=".">
+
+       <property name="projectname" value="kmlframework"/>
+       <property name="src.dir" location="${basedir}/src"/>
+       <property name="lib.dir" location="${basedir}/lib"/>
+       <property name="doc.dir" location="${basedir}/docs"/>
+       <property name="javadoc.dir" location="${doc.dir}/javadoc"/>
+       <property name="bin.dir" location="${basedir}/bin"/>
+       <property name="jars.dir" location="jars"/>
+       <property name="distribution.dir" location="${basedir}/distribution"/>
+       
+       <property file="build.properties"/>
+       
+       <path id="classpath">
+               <fileset dir="${lib.dir}" includes="**/*.jar"/>
+               <pathelement location="${basedir}"/>
+               <pathelement location="${bin.dir}"/>
+       </path>
+       
+       <target name="compile">
+               <mkdir dir="${bin.dir}"/>
+               <javac srcdir="${src.dir}"
+                       destdir="${bin.dir}"
+                       debug="on"
+                       classpathref="classpath"
+               />
+       </target>
+       
+       <target name="jar">
+               <tstamp />
+               <delete dir="${jars.dir}"/>
+               <mkdir dir="${jars.dir}"/>
+               <jar jarfile="${jars.dir}/org.boehn.kmlframework_${DSTAMP}.jar" 
basedir="${bin.dir}"/>
+       </target>
+       
+       <target name="distribution" depends="jar,javadoc">
+               <tstamp />
+               <delete dir="${distribution.dir}"/>
+               <mkdir dir="${distribution.dir}"/>
+               <mkdir 
dir="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}"/>
+               <copy file="${jars.dir}/org.boehn.kmlframework_${DSTAMP}.jar" 
todir="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}"/>
+               <copy 
todir="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}/documentation">
+                       <fileset dir="${doc.dir}"/>
+               </copy>
+               <copy 
todir="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}/src">
+                       <fileset dir="${src.dir}"/>
+               </copy>
+               <zip 
destfile="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}.zip" 
basedir="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}" 
keepcompression="true"/>
+       </target>
+       
+       <target name="javadoc">
+                <javadoc
+                               packagenames="org.boehn.kmlframework.*"
+                       sourcepath="${src.dir}"
+                       excludepackagenames="org.boehn.kmlframework.examples.*"
+                       defaultexcludes="yes"
+                       destdir="${javadoc.dir}"
+                       author="true"
+                       version="true"
+                       use="true"
+                       windowtitle="KML Framework API"
+                               classpathref="classpath"
+                />
+       </target>
+       
+       <target name="deploy" depends="distribution">
+               <taskdef 
classname="net.bluecow.googlecode.ant.GoogleCodeUploadTask" 
classpath="${lib.dir}/ant-googlecode-0.0.1.jar" name="gcupload"/>
+               <gcupload 
+                       username="${gc.username}" 
+                       password="${gc.password}" 
+                       projectname="kmlframework" 
+                       
filename="${distribution.dir}/org.boehn.kmlframework_${DSTAMP}.zip" 
+                       targetfilename="org.boehn.kmlframework_${DSTAMP}.zip"
+                               summary="Version ${DSTAMP}"
+               />
+       </target>
+       
+       <target name="clean">
+               <delete dir="${jars.dir}"/>
+               <delete dir="${bin.dir}"/>
+       </target>
+
+</project>
\ No newline at end of file


=====================================
lib/ant-googlecode-0.0.1.jar
=====================================
Binary files /dev/null and b/lib/ant-googlecode-0.0.1.jar differ


=====================================
lib/commons-logging.jar
=====================================
Binary files /dev/null and b/lib/commons-logging.jar differ


=====================================
lib/javax.servlet.jar
=====================================
Binary files /dev/null and b/lib/javax.servlet.jar differ


=====================================
lib/urlrewrite-2.6.0.jar
=====================================
Binary files /dev/null and b/lib/urlrewrite-2.6.0.jar differ


=====================================
lib/xom-1.0.jar
=====================================
Binary files /dev/null and b/lib/xom-1.0.jar differ


=====================================
lib/xpp3-1.1.3.4.O.jar
=====================================
Binary files /dev/null and b/lib/xpp3-1.1.3.4.O.jar differ


=====================================
lib/xpp3_min-1.1.3.4.O.jar
=====================================
Binary files /dev/null and b/lib/xpp3_min-1.1.3.4.O.jar differ


=====================================
lib/xpp3_xpath-1.1.3.4.O.jar
=====================================
Binary files /dev/null and b/lib/xpp3_xpath-1.1.3.4.O.jar differ



View it on GitLab: 
https://salsa.debian.org/med-team/libkmlframework-java/compare/8c292418e1b4471751fe9097a38f05b76a7b962a...9f90f239522bf865382b12b286538bee6fdb0c71

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/libkmlframework-java/compare/8c292418e1b4471751fe9097a38f05b76a7b962a...9f90f239522bf865382b12b286538bee6fdb0c71
You're receiving this email because of your account on salsa.debian.org.
_______________________________________________
debian-med-commit mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit

Reply via email to