Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe
Commits:
-
6b37ef22
by Tony Chemit at 2023-05-23T17:41:10+02:00
10 changed files:
- client/datasource/actions/pom.xml
- client/datasource/editor/api/pom.xml
- client/datasource/editor/common/pom.xml
- client/datasource/editor/ll/pom.xml
- client/datasource/editor/pom.xml
- client/datasource/editor/ps/pom.xml
- client/runner/pom.xml
- core/api/validation/pom.xml
- core/persistence/avdth/pom.xml
- pom.xml
Changes:
| ... | ... | @@ -160,6 +160,10 @@ |
| 160 | 160 | <groupId>org.apache.logging.log4j</groupId>
|
| 161 | 161 | <artifactId>log4j-api</artifactId>
|
| 162 | 162 | </dependency>
|
| 163 | + <dependency>
|
|
| 164 | + <groupId>org.swinglabs</groupId>
|
|
| 165 | + <artifactId>jxlayer</artifactId>
|
|
| 166 | + </dependency>
|
|
| 163 | 167 | <dependency>
|
| 164 | 168 | <groupId>org.swinglabs.swingx</groupId>
|
| 165 | 169 | <artifactId>swingx-core</artifactId>
|
| ... | ... | @@ -168,6 +168,10 @@ |
| 168 | 168 | <groupId>org.geotools</groupId>
|
| 169 | 169 | <artifactId>gt-main</artifactId>
|
| 170 | 170 | </dependency>
|
| 171 | + <dependency>
|
|
| 172 | + <groupId>org.geotools</groupId>
|
|
| 173 | + <artifactId>gt-metadata</artifactId>
|
|
| 174 | + </dependency>
|
|
| 171 | 175 | <dependency>
|
| 172 | 176 | <groupId>org.geotools</groupId>
|
| 173 | 177 | <artifactId>gt-opengis</artifactId>
|
| ... | ... | @@ -81,6 +81,10 @@ |
| 81 | 81 | <groupId>org.apache.logging.log4j</groupId>
|
| 82 | 82 | <artifactId>log4j-api</artifactId>
|
| 83 | 83 | </dependency>
|
| 84 | + <dependency>
|
|
| 85 | + <groupId>org.swinglabs</groupId>
|
|
| 86 | + <artifactId>jxlayer</artifactId>
|
|
| 87 | + </dependency>
|
|
| 84 | 88 | <dependency>
|
| 85 | 89 | <groupId>${project.groupId}</groupId>
|
| 86 | 90 | <artifactId>client-datasource-editor-api-test</artifactId>
|
| ... | ... | @@ -147,6 +147,10 @@ |
| 147 | 147 | <groupId>org.locationtech.jts</groupId>
|
| 148 | 148 | <artifactId>jts-core</artifactId>
|
| 149 | 149 | </dependency>
|
| 150 | + <dependency>
|
|
| 151 | + <groupId>org.swinglabs</groupId>
|
|
| 152 | + <artifactId>jxlayer</artifactId>
|
|
| 153 | + </dependency>
|
|
| 150 | 154 | <dependency>
|
| 151 | 155 | <groupId>org.swinglabs.swingx</groupId>
|
| 152 | 156 | <artifactId>swingx-core</artifactId>
|
| ... | ... | @@ -91,6 +91,11 @@ |
| 91 | 91 | <artifactId>gt-main</artifactId>
|
| 92 | 92 | <version>${lib.version.geoTools}</version>
|
| 93 | 93 | </dependency>
|
| 94 | + <dependency>
|
|
| 95 | + <groupId>org.geotools</groupId>
|
|
| 96 | + <artifactId>gt-metadata</artifactId>
|
|
| 97 | + <version>${lib.version.geoTools}</version>
|
|
| 98 | + </dependency>
|
|
| 94 | 99 | <dependency>
|
| 95 | 100 | <groupId>org.geotools</groupId>
|
| 96 | 101 | <artifactId>gt-opengis</artifactId>
|
| ... | ... | @@ -160,6 +160,10 @@ |
| 160 | 160 | <groupId>org.locationtech.jts</groupId>
|
| 161 | 161 | <artifactId>jts-core</artifactId>
|
| 162 | 162 | </dependency>
|
| 163 | + <dependency>
|
|
| 164 | + <groupId>org.swinglabs</groupId>
|
|
| 165 | + <artifactId>jxlayer</artifactId>
|
|
| 166 | + </dependency>
|
|
| 163 | 167 | <dependency>
|
| 164 | 168 | <groupId>org.swinglabs.swingx</groupId>
|
| 165 | 169 | <artifactId>swingx-core</artifactId>
|
| ... | ... | @@ -75,6 +75,10 @@ |
| 75 | 75 | <groupId>io.ultreia.java4all</groupId>
|
| 76 | 76 | <artifactId>application-context</artifactId>
|
| 77 | 77 | </dependency>
|
| 78 | + <dependency>
|
|
| 79 | + <groupId>io.ultreia.java4all</groupId>
|
|
| 80 | + <artifactId>java-util</artifactId>
|
|
| 81 | + </dependency>
|
|
| 78 | 82 | <dependency>
|
| 79 | 83 | <groupId>io.ultreia.java4all.i18n</groupId>
|
| 80 | 84 | <artifactId>i18n-runtime</artifactId>
|
| ... | ... | @@ -63,6 +63,11 @@ |
| 63 | 63 | <artifactId>toolkit-api-services</artifactId>
|
| 64 | 64 | <version>${project.version}</version>
|
| 65 | 65 | </dependency>
|
| 66 | + <dependency>
|
|
| 67 | + <groupId>${project.groupId}</groupId>
|
|
| 68 | + <artifactId>toolkit-api-validation</artifactId>
|
|
| 69 | + <version>${project.version}</version>
|
|
| 70 | + </dependency>
|
|
| 66 | 71 | <dependency>
|
| 67 | 72 | <groupId>${project.groupId}</groupId>
|
| 68 | 73 | <artifactId>model</artifactId>
|
| ... | ... | @@ -66,6 +66,10 @@ |
| 66 | 66 | <groupId>com.google.guava</groupId>
|
| 67 | 67 | <artifactId>guava</artifactId>
|
| 68 | 68 | </dependency>
|
| 69 | + <dependency>
|
|
| 70 | + <groupId>io.ultreia.java4all</groupId>
|
|
| 71 | + <artifactId>java-bean</artifactId>
|
|
| 72 | + </dependency>
|
|
| 69 | 73 | <dependency>
|
| 70 | 74 | <groupId>io.ultreia.java4all</groupId>
|
| 71 | 75 | <artifactId>java-lang</artifactId>
|
| ... | ... | @@ -23,7 +23,7 @@ |
| 23 | 23 | <parent>
|
| 24 | 24 | <groupId>io.ultreia.maven</groupId>
|
| 25 | 25 | <artifactId>pom</artifactId>
|
| 26 | - <version>2023.23</version>
|
|
| 26 | + <version>2023.24</version>
|
|
| 27 | 27 | </parent>
|
| 28 | 28 | <groupId>fr.ird.observe</groupId>
|
| 29 | 29 | <artifactId>ird-observe</artifactId>
|