Merge branch '2.5.x'

Closes gh-28305
This commit is contained in:
Scott Frederick 2021-10-12 18:09:32 -05:00
commit 3c9354305a
1 changed files with 7 additions and 1 deletions

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;
}