quix-python-module
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.wix</groupId> <artifactId>quix-python-module</artifactId> <version>1.0.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.wix</groupId> <artifactId>quix-python-module</artifactId> <version>1.0.1</version> <parent> <groupId>com.wix</groupId> <artifactId>quix</artifactId> <version>1.0.1</version> <relativePath>../..</relativePath> </parent> <dependencies> <dependency> <groupId>com.wix</groupId> <artifactId>quix-api</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>com.wix</groupId> <artifactId>quix-core</artifactId> <version>1.0.1</version> </dependency> <!-- https://mvnrepository.com/artifact/com.zaxxer/nuprocess --> <dependency> <groupId>com.zaxxer</groupId> <artifactId>nuprocess</artifactId> <version>${nuprocess.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/net.sf.py4j/py4j --> <dependency> <groupId>net.sf.py4j</groupId> <artifactId>py4j</artifactId> <version>${py4j.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.typesafe.scala-logging/scala-logging --> <dependency> <groupId>com.typesafe.scala-logging</groupId> <artifactId>scala-logging_${scala.dependencies.version}</artifactId> <version>${scala.logging.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.specs2/specs2-core --> <dependency> <groupId>org.specs2</groupId> <artifactId>specs2-core_${scala.dependencies.version}</artifactId> <version>${specs.version}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.specs2/specs2-junit --> <dependency> <groupId>org.specs2</groupId> <artifactId>specs2-junit_${scala.dependencies.version}</artifactId> <version>${specs.version}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.specs2/specs2-mock --> <dependency> <groupId>org.specs2</groupId> <artifactId>specs2-mock_${scala.dependencies.version}</artifactId> <version>${specs.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <executions> <execution> <id>scala-compile-first</id> <phase>process-resources</phase> <goals> <goal>add-source</goal> <goal>compile</goal> </goals> </execution> <execution> <id>scala-test-compile</id> <phase>process-test-resources</phase> <goals> <goal>testCompile</goal> </goals> </execution> <execution> <id>attach-javadocs</id> <goals> <goal>doc-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>