Skip to content

Commit c0d75e2

Browse files
committed
do not deploy 'examples' artifact
The module only serves an educational ppurpose and should not be used as a dependency
1 parent 916fc16 commit c0d75e2

2 files changed

Lines changed: 15 additions & 3 deletions

File tree

examples/pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ limitations under the License.
3030

3131
<artifactId>learnlib-examples</artifactId>
3232
<name>LearnLib :: Examples</name>
33-
<description>A collection of examples of how to use LearnLib</description>
33+
<description>
34+
A collection of various small example applications that illustrate several use cases of LearnLib.
35+
*Note:* This artifact is not intended as a library, but only exists for educational purposes.
36+
</description>
3437

3538
<build>
3639
<pluginManagement>
@@ -42,6 +45,14 @@ limitations under the License.
4245
<skip>true</skip>
4346
</configuration>
4447
</plugin>
48+
<plugin>
49+
<!-- Do not deploy binaries -->
50+
<groupId>org.apache.maven.plugins</groupId>
51+
<artifactId>maven-deploy-plugin</artifactId>
52+
<configuration>
53+
<skip>true</skip>
54+
</configuration>
55+
</plugin>
4556
</plugins>
4657
</pluginManagement>
4758
</build>

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -983,11 +983,12 @@ limitations under the License.
983983
</dependency>
984984

985985
<!-- examples -->
986-
<dependency>
986+
<!-- artifact will not be deployed, so don't allow any accidental reference to it -->
987+
<!--dependency>
987988
<groupId>de.learnlib</groupId>
988989
<artifactId>learnlib-examples</artifactId>
989990
<version>${project.version}</version>
990-
</dependency>
991+
</dependency-->
991992

992993
<!-- oracles -->
993994
<dependency>

0 commit comments

Comments
 (0)