plate-layout
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ca.qc.ircm</groupId> <artifactId>plate-layout</artifactId> <version>0.9</version> </dependency>
<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> <groupId>ca.qc.ircm</groupId> <artifactId>parent</artifactId> <version>11</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>plate-layout</artifactId> <name>plate-layout</name> <version>0.9</version> <inceptionYear>2016</inceptionYear> <description>Layout for micro well plates used in laboratories</description> <url>https://github.com/IRCM/plate-layout</url> <licenses> <license> <name>GNU Affero General Public License</name> <url>https://www.gnu.org/licenses/agpl.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/IRCM/plate-layout.git</connection> <developerConnection>scm:git:https://github.com/IRCM/plate-layout.git</developerConnection> <url>https://github.com/IRCM/plate-layout</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/IRCM/plate-layout/issues</url> </issueManagement> <properties> <javac.version>1.8</javac.version> <vaadin.version>8.3.0</vaadin.version> <spring-boot.version>1.5.10.RELEASE</spring-boot.version> <selenium.version>3.4.0</selenium.version> <testbench.skip>true</testbench.skip> <testbench.driver>org.openqa.selenium.phantomjs.PhantomJSDriver</testbench.driver> <vaadin.plugin.version>${vaadin.version}</vaadin.plugin.version> <mojolicense-maven-plugin.version>1.14</mojolicense-maven-plugin.version> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Vendor>${project.organization.name}</Implementation-Vendor> <Vaadin-License-Title>GNU Affero General Public License</Vaadin-License-Title> <Vaadin-Addon>${project.artifactId}-${project.version}.jar</Vaadin-Addon> <Vaadin-Widgetsets>ca.qc.ircm.platelayout.PlateLayoutWidgetset</Vaadin-Widgetsets> <Vaadin-Stylesheets>VAADIN/addons/platelayout/plate-layout.scss</Vaadin-Stylesheets> </properties> <repositories> <repository> <id>central</id> <url>https://repo.maven.apache.org/maven2</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>Vaadin Directory</id> <url>https://maven.vaadin.com/vaadin-addons</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <dependencyManagement> <dependencies> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-bom</artifactId> <version>${vaadin.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-testbench-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> <version>${selenium.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> <version>${selenium.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-firefox-driver</artifactId> <version>${selenium.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-chrome-driver</artifactId> <version>${selenium.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-themes</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-spring</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-spring-boot-starter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-push</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-server</artifactId> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-client</artifactId> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-shared</artifactId> </dependency> </dependencies> <build> <sourceDirectory>src/main/java</sourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <resources> <resource> <directory>src/main/java</directory> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <pluginManagement> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <testbench.skip>${testbench.skip}</testbench.skip> <testbench.driver>${testbench.driver}</testbench.driver> <spring.devtools.restart.enabled>false</spring.devtools.restart.enabled> </systemPropertyVariables> <excludes> <exclude>ca/qc/ircm/platelayout/test/**/*.java</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <index>true</index> <manifest> <addClasspath>true</addClasspath> </manifest> <manifestEntries> <Vaadin-Package-Version>1</Vaadin-Package-Version> <Vaadin-License-Title>${Vaadin-License-Title}</Vaadin-License-Title> <Vaadin-Widgetsets>${Vaadin-Widgetsets}</Vaadin-Widgetsets> <Vaadin-Stylesheets>${Vaadin-Stylesheets}</Vaadin-Stylesheets> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>com.vaadin</groupId> <artifactId>vaadin-maven-plugin</artifactId> <version>${vaadin.plugin.version}</version> <configuration> <webappDirectory>${basedir}/target/test-classes/VAADIN/widgetsets</webappDirectory> <hostedWebapp>${basedir}/target/test-classes</hostedWebapp> <warSourceDirectory>${basedir}/src/main/resources</warSourceDirectory> <draftCompile>false</draftCompile> <compileReport>false</compileReport> <style>OBF</style> <strict>true</strict> <logLevel>INFO</logLevel> <extraJvmArgs>-Xmx1G</extraJvmArgs> </configuration> <executions> <execution> <goals> <goal>compile</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-client-compiler</artifactId> <version>${vaadin.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>${mojolicense-maven-plugin.version}</version> <configuration> <useMissingFile>true</useMissingFile> </configuration> <executions> <execution> <id>license-add-third-party</id> <goals><goal>add-third-party</goal></goals> </execution> <execution> <id>license-download-licenses</id> <goals><goal>download-licenses</goal></goals> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.vaadin</groupId> <artifactId>vaadin-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <configuration> <reportsDirectories> <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory> <reportsDirectory>${project.build.directory}/failsafe-reports</reportsDirectory> </reportsDirectories> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> </plugin> </plugins> </reporting> <profiles> <profile> <id>testbench</id> <properties> <testbench.skip>false</testbench.skip> </properties> </profile> <profile> <id>chrome</id> <properties> <testbench.driver>org.openqa.selenium.chrome.ChromeDriver</testbench.driver> </properties> </profile> <profile> <id>firefox</id> <properties> <testbench.driver>org.openqa.selenium.firefox.FirefoxDriver</testbench.driver> </properties> </profile> </profiles> </project>