Merge branch '2.5.x'

Closes gh-28305
pull/28308/head
Scott Frederick 3 years ago
commit 3c9354305a

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

Loading…
Cancel
Save