Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
.idea
.gradle
*.iml
out
build
gradle
gradlew*
*.class
transaction-logs
_site

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.ear
*.log

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

gradlew
gradlew.bat
.DS_Store
generated
42 changes: 28 additions & 14 deletions README.txt → README.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
=========================================================================
Welcome to Apache Commons Sanselan <http://commons.apache.org/sanselan/>
=========================================================================
== Welcome to Apache Commons Sanselan http://commons.apache.org/sanselan/


License (see also LICENSE)
==============================
Expand All @@ -21,13 +20,13 @@ distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================

== Getting Started


Getting Started
===============
=== Mailing Lists

Mailing Lists
-------------

To get involved with the Apache Commons Sanselan project, start by
having a look at our website (link at top of page) and join our mailing
Expand All @@ -43,8 +42,8 @@ and the dev mailing list archives can be found at

Please prefix the subject line of any messages with [sanselan].

Downloading
-----------
=== Downloading


The Commons Sanselan source code is available via Subversion at

Expand Down Expand Up @@ -76,8 +75,23 @@ For more instructions, please see the documentation at:

http://commons.apache.org/building.html

Credits
=======

See http://commons.apache.org/sanselan/team-list.html for the list of
Sanselan committers and main contributors.
=== Credits

Sanselan committers and main contributors:

* Charles M. Chen
** cmchen
* Philipp Koch
** pkoch
* Jeremias Maerki
** jeremias
* Craig Russell
** clr
* Yoav Shapira
** yoavs
* Carsten Ziegeler
** cziegeler
* Damjan Jovanovic
** damjan
* Iuliana Cosmina
** iuliana
6 changes: 6 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ http://commons.apache.org/sanselan/
Version History:
----------------

Release 1.0-SNAPSHOT
------------
* Build with
** Gradle 5.0-20180826235923+0000
** JVM: 11 (Oracle Corporation 11+28)

Release 0.98
------------
* SANSELAN-44 - JpegImageMetadata getEXIFThumbnail may raise a null pointer exception
Expand Down
65 changes: 65 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

buildscript {
repositories {
mavenCentral()
}
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'distribution'

group = 'org.apache.commons'
version = '1.0-SNAPSHOT'

jar {
manifest {
attributes(
"Created-By": System.getProperty('java.version'),
"Specification-Title": "Commons Sanselan",
"Implementation-Version": version,
"Class-Path": configurations.compile.collect { it.getName() }.join(' ')
)
}
}


distributions {
main {
baseName = 'commons-sanselan'
contents {
from jar
from { 'src/LICENSE.txt' }
from { 'src/README.adoc' }
from { 'src/NOTICE.txt' }
from { 'src/RELEASE_NOTES' }
}
}
}

repositories {
mavenCentral()
}

dependencies {
testCompile("junit:junit:4.12")
testCompile("commons-io:commons-io:1.4")
}

Loading