Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe

Commits:

21 changed files:

Changes:

  • client/runner/src/main/assembly/dist/go.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -22,6 +23,5 @@
    22 23
     # <http://www.gnu.org/licenses/gpl-3.0.html>.
    
    23 24
     # #L%
    
    24 25
     ###
    
    25
    -#!/bin/sh
    
    26 26
     
    
    27 27
     java -jar ${applicationJarName}.jar "$@"
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/scripts/postgresql/create.bat
    1 1
     
    
    2
    -java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar  --obstuna-admin create
    \ No newline at end of file
    2
    +java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar  --remote-admin create
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/scripts/postgresql/create.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -22,7 +23,6 @@
    22 23
     # <http://www.gnu.org/licenses/gpl-3.0.html>.
    
    23 24
     # #L%
    
    24 25
     ###
    
    25
    -#!/bin/sh
    
    26 26
     # Pour créer une nouvelle base obstuna (le schéma sera créer et le référentiel rempli)
    
    27 27
     
    
    28
    -java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar --obstuna-admin create
    \ No newline at end of file
    28
    +java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar --remote-admin create
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/scripts/postgresql/createdb/create-empty-obstuna.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -22,7 +23,6 @@
    22 23
     # <http://www.gnu.org/licenses/gpl-3.0.html>.
    
    23 24
     # #L%
    
    24 25
     ###
    
    25
    -#!/bin/sh
    
    26 26
     
    
    27 27
     #
    
    28 28
     # script pour creer une base obstuna en v2.
    

  • client/runner/src/main/assembly/dist/scripts/postgresql/createdb/create-ird_obstuna.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -22,7 +23,6 @@
    22 23
     # <http://www.gnu.org/licenses/gpl-3.0.html>.
    
    23 24
     # #L%
    
    24 25
     ###
    
    25
    -#!/bin/sh
    
    26 26
     
    
    27 27
     #
    
    28 28
     # Pour créer la base obstuna de l'ird
    

  • client/runner/src/main/assembly/dist/scripts/postgresql/createdb/create-test_obstuna.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -22,7 +23,6 @@
    22 23
     # <http://www.gnu.org/licenses/gpl-3.0.html>.
    
    23 24
     # #L%
    
    24 25
     ###
    
    25
    -#!/bin/sh
    
    26 26
     
    
    27 27
     #
    
    28 28
     # Pour créer la base de test obstuna utilisés dans les tests d'intégration.
    

  • client/runner/src/main/assembly/dist/scripts/postgresql/drop.bat
    1 1
     
    
    2
    -java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar  --obstuna-admin drop
    \ No newline at end of file
    2
    +java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar  --remote-admin drop
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/scripts/postgresql/drop.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -22,7 +23,6 @@
    22 23
     # <http://www.gnu.org/licenses/gpl-3.0.html>.
    
    23 24
     # #L%
    
    24 25
     ###
    
    25
    -#!/bin/sh
    
    26 26
     # Pour vider une base obstuna (toutes les tables seront supprimées)
    
    27 27
     
    
    28
    -java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar --obstuna-admin drop
    \ No newline at end of file
    28
    +java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar --remote-admin drop
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/scripts/postgresql/update-security.bat
    1 1
     
    
    2
    -java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar --obstuna-admin security
    \ No newline at end of file
    2
    +java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar --remote-admin security
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/scripts/postgresql/update-security.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -25,4 +26,4 @@
    25 26
     #!/bin/sh
    
    26 27
     # Pour mettre à jour la sécurité sur une base postgres
    
    27 28
     
    
    28
    -java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar --obstuna-admin security
    \ No newline at end of file
    29
    +java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar --remote-admin security
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/scripts/postgresql/update.bat
    1 1
     
    
    2
    -java  -Xmx2048M -Xms512M -jar ../../${applicationJarName}.jar --obstuna-admin update
    \ No newline at end of file
    2
    +java  -Xmx2048M -Xms512M -jar ../../${applicationJarName}.jar --remote-admin update
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/scripts/postgresql/update.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -22,7 +23,6 @@
    22 23
     # <http://www.gnu.org/licenses/gpl-3.0.html>.
    
    23 24
     # #L%
    
    24 25
     ###
    
    25
    -#!/bin/sh
    
    26 26
     # Pour mettre à jour une base obstuna (le schéma sera mis à jour si nécessaire)
    
    27 27
     
    
    28
    -java  -Xmx1536M -Xms512M -jar ../../${applicationJarName}.jar  --obstuna-admin update
    \ No newline at end of file
    28
    +java  -Xmx1536M -Xms512M -jar ../../${applicationJarName}.jar  --remote-admin update
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/scripts/server/create.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -22,7 +23,6 @@
    22 23
     # <http://www.gnu.org/licenses/gpl-3.0.html>.
    
    23 24
     # #L%
    
    24 25
     ###
    
    25
    -#!/bin/sh
    
    26 26
     # Pour créer une nouvelle base obstuna (le schéma sera créer et le référentiel rempli)
    
    27 27
     
    
    28 28
     java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar --server-admin create
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/scripts/server/drop.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -22,7 +23,6 @@
    22 23
     # <http://www.gnu.org/licenses/gpl-3.0.html>.
    
    23 24
     # #L%
    
    24 25
     ###
    
    25
    -#!/bin/sh
    
    26 26
     # Pour vider une base obstuna (toutes les tables seront supprimées)
    
    27 27
     
    
    28 28
     java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar --server-admin drop
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/scripts/server/update-security.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -22,7 +23,6 @@
    22 23
     # <http://www.gnu.org/licenses/gpl-3.0.html>.
    
    23 24
     # #L%
    
    24 25
     ###
    
    25
    -#!/bin/sh
    
    26 26
     # Pour mettre à jour la sécurité sur une base postgres
    
    27 27
     
    
    28 28
     java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar --server-admin security
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/scripts/server/update.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -22,7 +23,6 @@
    22 23
     # <http://www.gnu.org/licenses/gpl-3.0.html>.
    
    23 24
     # #L%
    
    24 25
     ###
    
    25
    -#!/bin/sh
    
    26 26
     # Pour mettre à jour une base server (le schéma sera mis à jour si nécessaire)
    
    27 27
     
    
    28 28
     java  -Xmx1536M -Xms512M -jar ../../${applicationJarName}.jar  --server-admin update
    \ No newline at end of file

  • client/runner/src/main/assembly/dist/util/backup-obstuna.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -22,7 +23,6 @@
    22 23
     # <http://www.gnu.org/licenses/gpl-3.0.html>.
    
    23 24
     # #L%
    
    24 25
     ###
    
    25
    -#!/bin/sh
    
    26 26
     
    
    27 27
     #
    
    28 28
     # script pour faire une backup d'obstuna.
    

  • client/runner/src/main/assembly/dist/util/create-postgis.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    

  • client/runner/src/main/assembly/dist/util/generate-id.sh
    1
    +#!/bin/sh
    
    1 2
     ###
    
    2 3
     # #%L
    
    3 4
     # ObServe :: Admin Client
    
    ... ... @@ -23,6 +24,5 @@
    23 24
     # #L%
    
    24 25
     ###
    
    25 26
     
    
    26
    -#!/bin/sh
    
    27 27
     # Pour générer des topia ids
    
    28 28
     java  -Xmx512M -Xms512M -jar ../../${applicationJarName}.jar --create-id $1 $2
    \ No newline at end of file

  • services/validation/.mvn/skip-default-test

  • services/validation/pom.xml
    ... ... @@ -182,4 +182,32 @@
    182 182
     
    
    183 183
         </plugins>
    
    184 184
       </build>
    
    185
    +  <profiles>
    
    186
    +    <profile>
    
    187
    +      <id>deploy</id>
    
    188
    +      <activation>
    
    189
    +        <property>
    
    190
    +          <name>run-tests</name>
    
    191
    +        </property>
    
    192
    +      </activation>
    
    193
    +      <build>
    
    194
    +        <plugins>
    
    195
    +          <plugin>
    
    196
    +            <artifactId>maven-surefire-plugin</artifactId>
    
    197
    +            <executions>
    
    198
    +              <execution>
    
    199
    +                <id>default-test</id>
    
    200
    +                <goals>
    
    201
    +                  <goal>test</goal>
    
    202
    +                </goals>
    
    203
    +                <configuration>
    
    204
    +                  <skip>false</skip>
    
    205
    +                </configuration>
    
    206
    +              </execution>
    
    207
    +            </executions>
    
    208
    +          </plugin>
    
    209
    +        </plugins>
    
    210
    +      </build>
    
    211
    +    </profile>
    
    212
    +  </profiles>
    
    185 213
     </project>