sml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.stenway</groupId>
<artifactId>sml</artifactId>
<version>0.8.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.stenway</groupId> <artifactId>sml</artifactId> <version>0.8.1</version> <name>SML</name> <description>Stenway reference implementation of SimpleML (SML = Simple Markup Language)</description> <url>https://www.simpleml.com</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <type>jar</type> </dependency> <dependency> <groupId>com.stenway</groupId> <artifactId>reliabletxt</artifactId> <version>0.8.0</version> </dependency> <dependency> <groupId>com.stenway</groupId> <artifactId>wsv</artifactId> <version>0.8.1</version> </dependency> </dependencies> <developers> <developer> <name>Stenway</name> <email>dev@stenway.com</email> <organization>Stenway</organization> <organizationUrl>https://www.stenway.com</organizationUrl> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>https://raw.githubusercontent.com/Stenway/SML-Java/main/LICENSE</url> </license> </licenses> <scm> <connection>scm:git:https://github.com/Stenway/SML-Java</connection> <developerConnection>scm:git:https://github.com/Stenway/SML-Java</developerConnection> <url>https://github.com/Stenway/SML-Java</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>