luthier
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.yahoo.bard</groupId> <artifactId>luthier</artifactId> <version>1.1.13</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"> <parent> <artifactId>fili-parent-pom</artifactId> <groupId>com.yahoo.bard</groupId> <version>1.1.13</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>luthier</artifactId> <packaging>jar</packaging> <name>Fili: Luthier Config Libraries</name> <description> Luthier provides a complete external configuration system. </description> <properties> <checkstyle.config.location>../checkstyle-style.xml</checkstyle.config.location> <checkstyle.suppressions.location>../checkstyle-suppressions.xml</checkstyle.suppressions.location> <skipLuthierTests>true</skipLuthierTests> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>com.yahoo.bard</groupId> <artifactId>fili</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/org.luaj/luaj-jse --> <dependency> <groupId>org.luaj</groupId> <artifactId>luaj-jse</artifactId> <version>3.0.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> </plugins> </build> </project>