diff options
| author | doufenghu <[email protected]> | 2024-02-03 15:00:32 +0800 |
|---|---|---|
| committer | doufenghu <[email protected]> | 2024-02-03 15:00:32 +0800 |
| commit | f1097aa4551fbc6ebc2763ab51b91bb2298290e0 (patch) | |
| tree | 477511f002db8e2fee3a51cf62be7a35197e68d5 | |
| parent | 6c8b2441abbd64b780c6d46b7fed76a61d16fd26 (diff) | |
skip depoly and install in mvn
| -rw-r--r-- | groot-examples/cn-example/pom.xml | 4 | ||||
| -rw-r--r-- | groot-examples/inline-to-print-example/pom.xml | 5 | ||||
| -rw-r--r-- | groot-examples/pom.xml | 3 |
3 files changed, 11 insertions, 1 deletions
diff --git a/groot-examples/cn-example/pom.xml b/groot-examples/cn-example/pom.xml index 4f15aa6..e428311 100644 --- a/groot-examples/cn-example/pom.xml +++ b/groot-examples/cn-example/pom.xml @@ -11,5 +11,9 @@ <artifactId>cn-example</artifactId> <name>Groot : Examples : CN</name> + <properties> + <maven.install.skip>true</maven.install.skip> + <maven.deploy.skip>true</maven.deploy.skip> + </properties> </project>
\ No newline at end of file diff --git a/groot-examples/inline-to-print-example/pom.xml b/groot-examples/inline-to-print-example/pom.xml index 771b633..10135cd 100644 --- a/groot-examples/inline-to-print-example/pom.xml +++ b/groot-examples/inline-to-print-example/pom.xml @@ -12,4 +12,9 @@ <artifactId>inline-to-print-example</artifactId> <name>Groot : Examples : Inline-to-print</name> + <properties> + <maven.install.skip>true</maven.install.skip> + <maven.deploy.skip>true</maven.deploy.skip> + </properties> + </project>
\ No newline at end of file diff --git a/groot-examples/pom.xml b/groot-examples/pom.xml index 1077e6b..2d7ea4d 100644 --- a/groot-examples/pom.xml +++ b/groot-examples/pom.xml @@ -18,8 +18,9 @@ </modules> <properties> - <scope>provided</scope> + <scope>compile</scope> </properties> + <dependencies> <dependency> <groupId>com.typesafe</groupId> |
