From d1d3dbbde1ac80ead320a9a97190a06b157eed0f Mon Sep 17 00:00:00 2001 From: Julia Gustafsson Date: Mon, 10 Jul 2023 17:18:32 +0200 Subject: [PATCH] Prepare for version bump to 3.0.3 --- integration-tests/pom.xml | 14 ++++++++++++++ integration-tests/src/main/java/Hello.java | 12 ++++++++++++ .../jpastreamer/integration/test/CountTest.java | 12 ++++++++++++ .../integration/test/JPAStreamerTest.java | 12 ++++++++++++ .../integration/test/ManyToManyTest.java | 12 ++++++++++++ .../integration/test/ManyToOneTest.java | 12 ++++++++++++ .../integration/test/MapCustomClassTest.java | 12 ++++++++++++ .../jpastreamer/integration/test/MapToIntTest.java | 12 ++++++++++++ .../integration/test/OneToManyTest.java | 12 ++++++++++++ .../integration/test/PaginationTest.java | 12 ++++++++++++ .../integration/test/PartitionTest.java | 12 ++++++++++++ .../jpastreamer/integration/test/PivotTest.java | 12 ++++++++++++ .../integration/test/ProjectionTest.java | 12 ++++++++++++ .../jpastreamer/integration/test/ReorderTest.java | 12 ++++++++++++ .../jpastreamer/integration/test/SquashTest.java | 12 ++++++++++++ .../jpastreamer/integration/test/TermOpTest.java | 12 ++++++++++++ .../jpastreamer/integration/test/UnionTest.java | 12 ++++++++++++ .../jpastreamer/integration/test/model/Actor.java | 12 ++++++++++++ .../jpastreamer/integration/test/model/Film.java | 12 ++++++++++++ .../integration/test/model/Language.java | 12 ++++++++++++ .../integration/test/model/groups/GroupA.java | 12 ++++++++++++ .../integration/test/model/groups/GroupB.java | 12 ++++++++++++ .../src/test/resources/META-INF/persistence.xml | 14 ++++++++++++++ .../strategy/MoveAnonymousLambdaOperations.java | 12 ++++++++++++ .../internal/strategy/InternalOptimizerTest.java | 12 ++++++++++++ .../MoveAnonymousLambdaOperationsTest.java | 12 ++++++++++++ ...ndardTerminalOperationOptimizerFactoryTest.java | 12 ++++++++++++ .../standard/internal/CountTest.java | 12 ++++++++++++ .../StandardTerminalOperationOptimizerTest.java | 12 ++++++++++++ 29 files changed, 352 insertions(+) diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index 9be5a510..e9f5614b 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -1,3 +1,17 @@ + diff --git a/integration-tests/src/main/java/Hello.java b/integration-tests/src/main/java/Hello.java index ab56e8ee..133d79e0 100644 --- a/integration-tests/src/main/java/Hello.java +++ b/integration-tests/src/main/java/Hello.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ public class Hello { public static void main(String[] args) { diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/CountTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/CountTest.java index fd55bb72..c34adee2 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/CountTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/CountTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.application.JPAStreamer; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/JPAStreamerTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/JPAStreamerTest.java index cd0ead44..c8152939 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/JPAStreamerTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/JPAStreamerTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.application.JPAStreamer; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ManyToManyTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ManyToManyTest.java index e686de1a..aeaaa238 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ManyToManyTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ManyToManyTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.integration.test.model.Actor; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ManyToOneTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ManyToOneTest.java index c97cd5ef..8b86763a 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ManyToOneTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ManyToOneTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.integration.test.model.Film; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/MapCustomClassTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/MapCustomClassTest.java index b3a7e404..e279cb89 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/MapCustomClassTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/MapCustomClassTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.integration.test.model.Film; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/MapToIntTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/MapToIntTest.java index 804902a9..4a190132 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/MapToIntTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/MapToIntTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.integration.test.model.Film; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/OneToManyTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/OneToManyTest.java index 9e4f1110..ec7af671 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/OneToManyTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/OneToManyTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.integration.test.model.Film; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/PaginationTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/PaginationTest.java index 350cd0e5..f4da0530 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/PaginationTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/PaginationTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.application.StreamSupplier; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/PartitionTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/PartitionTest.java index b4107f34..a4f9ba04 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/PartitionTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/PartitionTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.application.StreamSupplier; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/PivotTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/PivotTest.java index cc3aa56f..10e46e6e 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/PivotTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/PivotTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.integration.test.model.Actor; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ProjectionTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ProjectionTest.java index 6df3fe45..dfd4796e 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ProjectionTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ProjectionTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.application.StreamSupplier; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ReorderTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ReorderTest.java index d93744a9..eb5ce426 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ReorderTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/ReorderTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.application.StreamSupplier; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/SquashTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/SquashTest.java index 7ede1535..6e414666 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/SquashTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/SquashTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.application.StreamSupplier; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/TermOpTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/TermOpTest.java index 0231c7df..b850a209 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/TermOpTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/TermOpTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.integration.test.model.Film; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/UnionTest.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/UnionTest.java index 7dcede93..65019f33 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/UnionTest.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/UnionTest.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test; import com.speedment.jpastreamer.application.JPAStreamer; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/Actor.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/Actor.java index 7120af01..290f21f1 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/Actor.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/Actor.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.model; import jakarta.persistence.*; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/Film.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/Film.java index 9a1b40e1..1661a8fd 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/Film.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/Film.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.model; import com.speedment.jpastreamer.integration.test.model.groups.GroupA; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/Language.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/Language.java index 1ac0becd..5bdf45d6 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/Language.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/Language.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.model; diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/groups/GroupA.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/groups/GroupA.java index 50ded61a..90b5e2f7 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/groups/GroupA.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/groups/GroupA.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.model.groups; public interface GroupA { diff --git a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/groups/GroupB.java b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/groups/GroupB.java index bc25413b..daf01777 100644 --- a/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/groups/GroupB.java +++ b/integration-tests/src/test/java/com/speedment/jpastreamer/integration/test/model/groups/GroupB.java @@ -1,3 +1,15 @@ +/* + * JPAstreamer - Express JPA queries with Java Streams + * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved. + * + * License: GNU Lesser General Public License (LGPL), version 2.1 or later. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE + */ package com.speedment.jpastreamer.integration.test.model.groups; public interface GroupB { } diff --git a/integration-tests/src/test/resources/META-INF/persistence.xml b/integration-tests/src/test/resources/META-INF/persistence.xml index 97bce3bb..f707a062 100644 --- a/integration-tests/src/test/resources/META-INF/persistence.xml +++ b/integration-tests/src/test/resources/META-INF/persistence.xml @@ -1,4 +1,18 @@ +