From e86f5539357d3f2a0a207bdc6b85e45cba32fcfa Mon Sep 17 00:00:00 2001 From: Jens Schauder Date: Tue, 5 Jan 2021 09:49:30 +0100 Subject: [PATCH] Update all references to the issue tracker. All references to the issue tracker of Spring projects now lead directly to GitHub. Original pull request: #2130. Closes #2127. --- README.adoc | 14 +++++++------- src/main/asciidoc/preface.adoc | 2 +- .../data/jpa/provider/PersistenceProvider.java | 2 +- .../config/AuditingBeanDefinitionParser.java | 2 +- .../jpa/support/MergingPersistenceUnitManager.java | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.adoc b/README.adoc index c5b6ca752..e4d99c20e 100644 --- a/README.adoc +++ b/README.adoc @@ -136,18 +136,18 @@ If you are just starting out with Spring, try one of the https://spring.io/guide * If you are upgrading, check out the https://docs.spring.io/spring-data/jpa/docs/current/changelog.txt[changelog] for "`new and noteworthy`" features. * Ask a question - we monitor https://stackoverflow.com[stackoverflow.com] for questions tagged with https://stackoverflow.com/tags/spring-data[`spring-data-jpa`]. You can also chat with the community on https://gitter.im/spring-projects/spring-data[Gitter]. -* Report bugs with Spring Data JPA at https://jira.spring.io/browse/DATAJPA[jira.spring.io/browse/DATAJPA]. +* Report bugs with Spring Data JPA in the https://github.com/spring-projects/spring-data-jpa/issues[GitHub issue tracker]. == Reporting Issues -Spring Data uses JIRA as issue tracking system to record bugs and feature requests. If you want to raise an issue, please follow the recommendations below: +Spring Data uses GitHub as issue tracking system to record bugs and feature requests. If you want to raise an issue, please follow the recommendations below: * Before you log a bug, please search the -https://jira.spring.io/browse/DATAJPA[issue tracker] to see if someone has already reported the problem. -* If the issue doesn’t already exist, https://jira.spring.io/browse/DATAJPA[create a new issue]. -* Please provide as much information as possible with the issue report, we like to know the version of Spring Data that you are using and JVM version. -* If you need to paste code, or include a stack trace use JIRA `{code}…{code}` escapes before and after your text. -* If possible try to create a test-case or project that replicates the issue. Attach a link to your code or a compressed file containing your code. +https://github.com/spring-projects/spring-data-jpa/issues[issue tracker] to see if someone has already reported the problem. +* If the issue doesn’t exist already, https://github.com/spring-projects/spring-data-jpa/issues[create a new issue]. +* Please provide as much information as possible with the issue report, we like to know the version of Spring Data that you are using and JVM version, complete stack traces and any relevant configuration information. +* If you need to paste code, or include a stack trace format it as code using triple backtick. +* If possible try to create a test-case or project that replicates the issue. Attach a link to your code or a compressed file containing your code. Use an in-memory datatabase if possible or set the database up using https://github.com/testcontainers[Testcontainers]. == Building from Source diff --git a/src/main/asciidoc/preface.adoc b/src/main/asciidoc/preface.adoc index 74a10121f..37a01d6e6 100644 --- a/src/main/asciidoc/preface.adoc +++ b/src/main/asciidoc/preface.adoc @@ -7,7 +7,7 @@ Spring Data JPA provides repository support for the Java Persistence API (JPA). === Project Metadata * Version control: https://github.com/spring-projects/spring-data-jpa -* Bugtracker: https://jira.spring.io/browse/DATAJPA +* Bugtracker: https://github.com/spring-projects/spring-data-jpa/issues * Release repository: https://repo.spring.io/libs-release * Milestone repository: https://repo.spring.io/libs-milestone * Snapshot repository: https://repo.spring.io/libs-snapshot diff --git a/src/main/java/org/springframework/data/jpa/provider/PersistenceProvider.java b/src/main/java/org/springframework/data/jpa/provider/PersistenceProvider.java index 5e92161b7..1a0fc9b8e 100644 --- a/src/main/java/org/springframework/data/jpa/provider/PersistenceProvider.java +++ b/src/main/java/org/springframework/data/jpa/provider/PersistenceProvider.java @@ -52,7 +52,7 @@ public enum PersistenceProvider implements QueryExtractor, ProxyIdAccessor { * Since Hibernate 4.3 the location of the HibernateEntityManager moved to the org.hibernate.jpa package. In order to * support both locations we interpret both classnames as a Hibernate {@code PersistenceProvider}. * - * @see DATAJPA-444 + * @see DATAJPA-444 */ HIBERNATE(// Collections.singletonList(HIBERNATE_ENTITY_MANAGER_INTERFACE), // diff --git a/src/main/java/org/springframework/data/jpa/repository/config/AuditingBeanDefinitionParser.java b/src/main/java/org/springframework/data/jpa/repository/config/AuditingBeanDefinitionParser.java index 8eae0604e..169b6d370 100644 --- a/src/main/java/org/springframework/data/jpa/repository/config/AuditingBeanDefinitionParser.java +++ b/src/main/java/org/springframework/data/jpa/repository/config/AuditingBeanDefinitionParser.java @@ -81,7 +81,7 @@ public class AuditingBeanDefinitionParser implements BeanDefinitionParser { /** * Copied code of SpringConfiguredBeanDefinitionParser until this class gets public. * - * @see SPR-7340 + * @see SPR-7340 * @author Juergen Hoeller */ private static class SpringConfiguredBeanDefinitionParser implements BeanDefinitionParser { diff --git a/src/main/java/org/springframework/data/jpa/support/MergingPersistenceUnitManager.java b/src/main/java/org/springframework/data/jpa/support/MergingPersistenceUnitManager.java index 4e41df216..e0c1d689f 100644 --- a/src/main/java/org/springframework/data/jpa/support/MergingPersistenceUnitManager.java +++ b/src/main/java/org/springframework/data/jpa/support/MergingPersistenceUnitManager.java @@ -30,7 +30,7 @@ import org.springframework.orm.jpa.persistenceunit.MutablePersistenceUnitInfo; * {@code persistence.xml} files into one. This is necessary to allow the declaration of entities in seperate modules. * * @author Oliver Gierke - * @link https://jira.springframework.org/browse/SPR-2598 + * @link https://github.com/spring-projects/spring-framework/issues/7287 */ public class MergingPersistenceUnitManager extends DefaultPersistenceUnitManager {