Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe
Commits:
-
dfc7cad3
by Tony Chemit at 2020-12-23T14:59:44+01:00
3 changed files:
- toolkit/maven-plugin/pom.xml
- toolkit/maven-plugin/src/main/java/fr/ird/observe/maven/plugins/toolbox/persistence/GenerateEmptyDatabases.java
- toolkit/persistence/src/main/java/fr/ird/observe/entities/ObserveTopiaApplicationContextSupport.java
Changes:
| ... | ... | @@ -93,7 +93,18 @@ |
| 93 | 93 |
<artifactId>auto-service</artifactId>
|
| 94 | 94 |
<scope>provided</scope>
|
| 95 | 95 |
</dependency>
|
| 96 |
- |
|
| 96 |
+ <dependency>
|
|
| 97 |
+ <groupId>io.ultreia.java4all.topia</groupId>
|
|
| 98 |
+ <artifactId>service-migration</artifactId>
|
|
| 99 |
+ </dependency>
|
|
| 100 |
+ <dependency>
|
|
| 101 |
+ <groupId>org.nuiton</groupId>
|
|
| 102 |
+ <artifactId>nuiton-version</artifactId>
|
|
| 103 |
+ </dependency>
|
|
| 104 |
+ <dependency>
|
|
| 105 |
+ <groupId>io.ultreia.java4all.topia</groupId>
|
|
| 106 |
+ <artifactId>persistence</artifactId>
|
|
| 107 |
+ </dependency>
|
|
| 97 | 108 |
<dependency>
|
| 98 | 109 |
<groupId>org.apache.maven</groupId>
|
| 99 | 110 |
<artifactId>maven-core</artifactId>
|
| 1 | 1 |
package fr.ird.observe.maven.plugins.toolbox.persistence;
|
| 2 | 2 |
|
| 3 |
+/*-
|
|
| 4 |
+ * #%L
|
|
| 5 |
+ * ObServe Toolkit :: Maven plugin
|
|
| 6 |
+ * %%
|
|
| 7 |
+ * Copyright (C) 2008 - 2020 IRD, Code Lutin, Ultreia.io
|
|
| 8 |
+ * %%
|
|
| 9 |
+ * This program is free software: you can redistribute it and/or modify
|
|
| 10 |
+ * it under the terms of the GNU General Public License as
|
|
| 11 |
+ * published by the Free Software Foundation, either version 3 of the
|
|
| 12 |
+ * License, or (at your option) any later version.
|
|
| 13 |
+ *
|
|
| 14 |
+ * This program is distributed in the hope that it will be useful,
|
|
| 15 |
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
| 16 |
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
| 17 |
+ * GNU General Public License for more details.
|
|
| 18 |
+ *
|
|
| 19 |
+ * You should have received a copy of the GNU General Public
|
|
| 20 |
+ * License along with this program. If not, see
|
|
| 21 |
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
|
|
| 22 |
+ * #L%
|
|
| 23 |
+ */
|
|
| 24 |
+ |
|
| 3 | 25 |
|
| 4 | 26 |
import fr.ird.observe.entities.ObserveTopiaApplicationContextSupport;
|
| 5 | 27 |
import fr.ird.observe.entities.ObserveTopiaConfiguration;
|
| 1 | 1 |
package fr.ird.observe.entities;
|
| 2 | 2 |
|
| 3 |
+/*-
|
|
| 4 |
+ * #%L
|
|
| 5 |
+ * ObServe Toolkit :: Persistence
|
|
| 6 |
+ * %%
|
|
| 7 |
+ * Copyright (C) 2008 - 2020 IRD, Code Lutin, Ultreia.io
|
|
| 8 |
+ * %%
|
|
| 9 |
+ * This program is free software: you can redistribute it and/or modify
|
|
| 10 |
+ * it under the terms of the GNU General Public License as
|
|
| 11 |
+ * published by the Free Software Foundation, either version 3 of the
|
|
| 12 |
+ * License, or (at your option) any later version.
|
|
| 13 |
+ *
|
|
| 14 |
+ * This program is distributed in the hope that it will be useful,
|
|
| 15 |
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
| 16 |
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
| 17 |
+ * GNU General Public License for more details.
|
|
| 18 |
+ *
|
|
| 19 |
+ * You should have received a copy of the GNU General Public
|
|
| 20 |
+ * License along with this program. If not, see
|
|
| 21 |
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
|
|
| 22 |
+ * #L%
|
|
| 23 |
+ */
|
|
| 24 |
+ |
|
| 3 | 25 |
import com.google.common.collect.ImmutableSet;
|
| 4 | 26 |
import fr.ird.observe.dto.referential.ReferentialDto;
|
| 5 | 27 |
import io.ultreia.java4all.util.SingletonSupplier;
|