Apache Commons Lang
Go to file
Chas Honton f56931c176 LANG-1380: FastDateParser too strict on abbreviated short month symbols 2018-07-02 20:39:24 -07:00
src LANG-1380: FastDateParser too strict on abbreviated short month symbols 2018-07-02 20:39:24 -07:00
.gitattributes Fixed line ending issues once and for all 2016-01-17 20:15:51 +01:00
.gitignore Ignore eclipse-cs generated file 2016-12-22 15:46:08 +00:00
.travis.yml Use oraclejdk10 and openjdk10 provided by travis. 2018-06-09 10:31:13 +02:00
CONTRIBUTING.md Update GitHub PR help link (closes #322) 2018-04-06 16:03:47 +02:00
LICENSE.txt Add blank line 2004-02-19 21:23:04 +00:00
NOTICE.txt Happy New Year 2018-01-06 20:28:52 -05:00
README.md Typo: 'JavaDoc' -> 'Javadoc'. 2018-05-15 12:58:01 -06:00
RELEASE-NOTES.txt Typo: 'JavaDoc' -> 'Javadoc'. 2018-05-15 12:58:01 -06:00
checkstyle-suppressions.xml Prevent redundant modifiers 2017-06-06 16:11:45 +02:00
checkstyle.xml make checkstyle config more portable (no maven coupling) 2017-09-09 08:51:49 +02:00
findbugs-exclude-filter.xml Fix typo stateme->statement 2017-09-21 22:48:03 +12:00
pom.xml Travis: Switch from Cobertura to Jacoco, because Cobertura does not work on Java 9+. Cobertura-Maven-Plugin fails on Java 10+ even if execution is skipped. 2018-05-15 22:03:20 +02:00

README.md

Apache Commons Lang

Build Status Coverage Status Maven Central Javadocs

Apache Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang.

Documentation

More information can be found on the homepage. The Javadoc can be browsed. Questions related to the usage of Apache Commons Lang should be posted to the user mailing list.

Where can I get the latest release?

You can download source and binaries from our download page.

Alternatively you can pull it from the central Maven repositories:

<dependency>
  <groupId>org.apache.commons</groupId>
  <artifactId>commons-lang3</artifactId>
  <version>3.7</version>
</dependency>

Contributing

We accept PRs via github. The developer mailing list is the main channel of communication for contributors. There are some guidelines which will make applying PRs easier for us:

  • No tabs! Please use spaces for indentation.
  • Respect the code style.
  • Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
  • Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running mvn clean test.

If you plan to contribute on a regular basis, please consider filing a contributor license agreement. You can learn more about contributing via GitHub in our contribution guidelines.

License

Code is under the Apache Licence v2.

Donations

You like Apache Commons Lang? Then donate back to the ASF to support the development.

Additional Resources