multi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.javax0.jamal</groupId> <artifactId>multi</artifactId> <version>1.0.0</version> </dependency>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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.javax0.jamal</groupId> <artifactId>multi</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>multi</name> <description>Jamal macro library to process text files</description> <url>http:/github.com/verhas/jamal/tree/master</url> <modules> <module>engine</module> <module>api</module> <module>tools</module> <module>core</module> <module>maven</module> </modules> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Peter Verhas</name> <email>peter@verhas.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/verhas/jamal.git</connection> <developerConnection>scm:git:ssh://github.com/verhas/jamal.git</developerConnection> <url>http:/github.com/verhas/jamal/tree/master</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jamal.version>1.0.0</jamal.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>1.10</source> <target>1.10</target> <release>10</release> <jdkToolchain> <version>10</version> </jdkToolchain> </configuration> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>com.javax0.jamal</groupId> <artifactId>jamal-api</artifactId> <version>${jamal.version}</version> </dependency> <dependency> <groupId>com.javax0.jamal</groupId> <artifactId>jamal-core</artifactId> <version>${jamal.version}</version> </dependency> <dependency> <groupId>com.javax0.jamal</groupId> <artifactId>jamal-tools</artifactId> <version>${jamal.version}</version> </dependency> <dependency> <groupId>com.javax0.jamal</groupId> <artifactId>jamal-engine</artifactId> <version>${jamal.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.2.0</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> </project>