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