Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 2.0 release #43

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
777c1f2
Break cyclic dependency
anthonyvdotbe Aug 12, 2020
52edf70
Remove unnecessary superinterface Locator
anthonyvdotbe Aug 12, 2020
223c87c
Clean up: doc
anthonyvdotbe Apr 23, 2020
78674ec
Clean up: gwt-src et al.
anthonyvdotbe Apr 23, 2020
db75e90
Clean up: mozilla-export-scripts
anthonyvdotbe Apr 23, 2020
0a18810
Clean up: ruby-gcj
anthonyvdotbe Apr 23, 2020
d6df8ad
Clean up: super
anthonyvdotbe Apr 23, 2020
d459ad0
Clean up: tools
anthonyvdotbe Apr 23, 2020
429bfe2
Clean up: cpptranslate et al.
anthonyvdotbe Apr 23, 2020
6f9916f
Clean up: GenerateNamedCharacters.java
anthonyvdotbe Apr 23, 2020
6d00055
Remove RPM package support
anthonyvdotbe Apr 25, 2020
1f70f9b
Remove OSGi bundle support
anthonyvdotbe Apr 25, 2020
1c484d4
Update URLs
anthonyvdotbe Aug 12, 2020
31888b3
Format POM
anthonyvdotbe Aug 12, 2020
ea60638
Adopt Maven directory layout
anthonyvdotbe Apr 23, 2020
44b25b6
Fix Maven build
anthonyvdotbe Aug 12, 2020
c7c30d7
Split into separate Maven modules
anthonyvdotbe Apr 23, 2020
7c8b11f
Fix Maven build
anthonyvdotbe Aug 12, 2020
2928550
Fix doclint errors
anthonyvdotbe Aug 12, 2020
88184e1
Fix typos
anthonyvdotbe Aug 12, 2020
5304a2c
Fix some lint warnings
anthonyvdotbe Apr 23, 2020
653a769
Suppress remaining lint warnings
anthonyvdotbe Apr 23, 2020
7511367
Remove unused imports
anthonyvdotbe Apr 23, 2020
eabf3dd
Upgrade to a module-aware Java SE version
anthonyvdotbe Apr 23, 2020
f2c3126
Modularize
anthonyvdotbe Aug 12, 2020
283955b
Rename package.html to package-info.java
anthonyvdotbe Apr 23, 2020
9376c4f
Fix package Javadoc after rename
anthonyvdotbe Apr 23, 2020
2ce23df
Make NormalizationChecker independent of ICU4J
anthonyvdotbe Aug 12, 2020
bd6aae9
Make jchardet & ICU4J heuristics a no-op
anthonyvdotbe Aug 12, 2020
51b5c92
Bump version number to 2.0
anthonyvdotbe Aug 14, 2020
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
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
* DEALINGS IN THE SOFTWARE.
-->
<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">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>nu.validator.htmlparser</groupId>
<artifactId>htmlparser</artifactId>
<version>1.4</version>
<name>htmlparser</name>
<url>http://about.validator.nu/htmlparser/</url>
<url>https://about.validator.nu/htmlparser/</url>
<description>The Validator.nu HTML Parser is an implementation of the HTML5 parsing algorithm in Java for applications. The parser is designed to work as a drop-in replacement for the XML parser in applications that already support XHTML 1.x content with an XML parser and use SAX, DOM or XOM to interface with the parser.</description>
<!--
Usage notes for this POM:
Expand All @@ -43,31 +43,31 @@
isn't experienced in POM tweaking. If you need this POM to do something
that it currently does not do or do something better, you need to write
the changes you need yourself and contribute a patch via
http://bugzilla.validator.nu/
https://github.com/validator/htmlparser/issues
-->
<developers>
<developer>
<id>hsivonen</id>
<name>Henri Sivonen</name>
<email>[email protected]</email>
anthonyvdotbe marked this conversation as resolved.
Show resolved Hide resolved
<url>http://hsivonen.iki.fi/</url>
<url>https://hsivonen.fi/</url>
</developer>
</developers>
<licenses>
<license>
<name>The MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<url>https://opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
<license>
<name>The (New) BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<url>https://opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:hg:http://hg.mozilla.org/projects/htmlparser/</connection>
<url>http://hg.mozilla.org/projects/htmlparser/</url>
<connection>scm:git:https://github.com/validator/htmlparser.git</connection>
<url>https://github.com/validator/htmlparser</url>
</scm>
<build>
<sourceDirectory>${project.build.directory}/src</sourceDirectory>
Expand Down