Merge branch '2.4.x' into 2.5.x

Closes gh-28304
This commit is contained in:
Scott Frederick
2021-10-12 18:00:15 -05:00

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2020 the original author or authors.
* Copyright 2012-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -16,9 +16,15 @@
package org.springframework.boot.autoconfigure.data.neo4j.scan;
import org.springframework.data.neo4j.core.schema.GeneratedValue;
import org.springframework.data.neo4j.core.schema.Id;
import org.springframework.data.neo4j.core.schema.RelationshipProperties;
@RelationshipProperties
public class TestRelationshipProperties {
@Id
@GeneratedValue
Long id;
}