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

Use different module names for hamcrest jars #270

Merged
merged 9 commits into from Aug 24, 2019
2 changes: 1 addition & 1 deletion docs/_layouts/default.html
Expand Up @@ -11,7 +11,7 @@
<span style="float:right;">
Released under the <a href="http://opensource.org/licenses/BSD-3-Clause">BSD License</a>.
</span>
Copyright 2012-2018 <a href="http://hamcrest.org">hamcrest.org</a>
Copyright 2012-2019 <a href="http://hamcrest.org">hamcrest.org</a>
</footer>
<a href="http://github.com/hamcrest/JavaHamcrest"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png" alt="Fork me on GitHub"></a>
</body>
Expand Down
2 changes: 1 addition & 1 deletion hamcrest-core/hamcrest-core.gradle
Expand Up @@ -7,7 +7,7 @@ jar {
attributes 'Implementation-Title': project.name,
'Implementation-Vendor': 'hamcrest.org',
'Implementation-Version': version,
'Automatic-Module-Name': 'org.hamcrest'
'Automatic-Module-Name': 'org.hamcrest.core.deprecated'
}
}

Expand Down
@@ -1,4 +1,4 @@
package org.hamcrest;
package org.hamcrest.core.deprecated;

/**
* All the classes in <code>hamcrest-core.jar</code> have moved to
Expand Down
Expand Up @@ -2,4 +2,4 @@
* All classes in <code>hamcrest-core.jar</code> have been migrated to
* <code>hamcrest.jar</code>. Please use that dependency instead.
*/
package org.hamcrest;
package org.hamcrest.core.deprecated;
2 changes: 1 addition & 1 deletion hamcrest-library/hamcrest-library.gradle
Expand Up @@ -7,7 +7,7 @@ jar {
attributes 'Implementation-Title': project.name,
'Implementation-Vendor': 'hamcrest.org',
'Implementation-Version': version,
'Automatic-Module-Name': 'org.hamcrest'
'Automatic-Module-Name': 'org.hamcrest.library.deprecated'
}
}

Expand Down
@@ -1,4 +1,4 @@
package org.hamcrest;
package org.hamcrest.library.deprecated;

/**
* All the classes in <code>hamcrest-library.jar</code> have moved to
Expand Down
Expand Up @@ -2,4 +2,4 @@
* All classes in <code>hamcrest-library.jar</code> have been migrated to
* <code>hamcrest.jar</code>. Please use that dependency instead.
*/
package org.hamcrest;
package org.hamcrest.library.deprecated;