Änderungen von Dokument Plugin-Entwicklung
Zusammenfassung
-
Seiteneigenschaften (1 geändert, 0 hinzugefügt, 0 gelöscht)
-
Anhänge (1 geändert, 0 hinzugefügt, 0 gelöscht)
Details
- Seiteneigenschaften
-
- Inhalt
-
... ... @@ -253,7 +253,7 @@ 253 253 Sofern das Deploy-Plugin bereits in {{formcycle/}} installiert ist, kann das Plugin-Projekt dann beim Bauen wie folgt hochgeladen werden: 254 254 255 255 {{code language="bash"}} 256 -mvn package fc-deploy:deploy -DfcDeployUrl=http://localhost:8080/xima-formcycle -DfcDeployToken=admin256 +mvn package -DfcDeployUrl=http://localhost:8080/xima-formcycle -DfcDeployToken=admin 257 257 {{/code}} 258 258 259 259 Wird Eclipse benutzt, kann auch eine Launch-Configuration mit den //fcDeployUrl// und dem //fcDeployToken// angelegt werden.
- pom.xml
-
- Größe
-
... ... @@ -1,1 +1,1 @@ 1 -5. 7KB1 +5.9 KB - Inhalt
-
... ... @@ -58,11 +58,20 @@ 58 58 <plugins> 59 59 60 60 <!-- Upload the plugin to a running FORMCYCLE server as part of the Maven build process --> 61 - <!-- mvn packagefc-deploy:deploy-DfcDeployUrl=http://localhost:8080/xima-formcycle -DfcDeployToken=admin -->61 + <!-- mvn clean install -DfcDeployUrl=http://localhost:8080/xima-formcycle -DfcDeployToken=admin --> 62 62 <plugin> 63 63 <groupId>de.xima.fc.maven.plugin</groupId> 64 64 <artifactId>fc-deploy-plugin-maven-plugin</artifactId> 65 65 <version>${fc-deploy-plugin-maven-plugin.version}</version> 66 + <executions> 67 + <execution> 68 + <id>upload</id> 69 + <phase>package</phase> 70 + <goals> 71 + <goal>deploy</goal> 72 + </goals> 73 + </execution> 74 + </executions> 66 66 </plugin> 67 67 68 68 <!-- Start a preconfigured FORMCYCLE server-->