java/sql-dk/pom.xml
author František Kučera <franta-hg@frantovo.cz>
Mon, 04 Mar 2019 20:15:24 +0100
branchv_0
changeset 238 4a1864c3e867
child 241 f332033ed66c
permissions -rw-r--r--
mavenized: sql-dk
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <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">
     3 	<modelVersion>4.0.0</modelVersion>
     4 	<groupId>info.globalcode.sql.dk</groupId>
     5 	<artifactId>sql-dk</artifactId>
     6 	<version>0.10-SNAPSHOT</version>
     7 	<packaging>jar</packaging>
     8 	
     9 	<dependencies>
    10 		<dependency>
    11 			<groupId>org.testng</groupId>
    12 			<artifactId>testng</artifactId>
    13 			<version>6.9.9</version>
    14 			<scope>test</scope>
    15 		</dependency>
    16 	</dependencies>
    17 	
    18 	<properties>
    19 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    20 		<maven.compiler.source>1.8</maven.compiler.source>
    21 		<maven.compiler.target>1.8</maven.compiler.target>
    22 	</properties>
    23 	
    24 	<build>
    25 		<plugins>
    26 			<plugin>
    27 				<groupId>org.codehaus.mojo</groupId>
    28 				<artifactId>exec-maven-plugin</artifactId>
    29 				<version>1.6.0</version>
    30 				<executions>
    31 					<execution>
    32 						<id>version-info</id>
    33 						<phase>generate-sources</phase>
    34 						<goals>
    35 							<goal>exec</goal>
    36 						</goals>
    37 						<configuration>
    38 							<executable>./version-info.sh</executable>
    39 							<outputFile>src/main/resources/info/globalcode/sql/dk/version.txt</outputFile><!-- TODO: move to target/generated-sources/ -->
    40 						</configuration>
    41 					</execution>
    42 					<execution>
    43 						<id>help-generator</id>
    44 						<phase>generate-sources</phase>
    45 						<goals>
    46 							<goal>exec</goal>
    47 						</goals>
    48 						<configuration>
    49 							<executable>./help-generator.sh</executable>
    50 							<outputFile>src/main/resources/info/globalcode/sql/dk/help.txt</outputFile><!-- TODO: move to target/generated-sources/ -->
    51 						</configuration>
    52 					</execution>
    53 					<execution>
    54 						<id>bash-completion</id>
    55 						<phase>generate-sources</phase>
    56 						<goals>
    57 							<goal>exec</goal>
    58 						</goals>
    59 						<configuration>
    60 							<executable>./bash-completion.sh</executable>
    61 							<outputFile>target/bash-completion.sh</outputFile>
    62 						</configuration>
    63 					</execution>
    64 				</executions>
    65 			</plugin>
    66 		</plugins>
    67 	</build>
    68 	
    69 </project>