-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
66 lines (60 loc) · 2.25 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?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.igormaznitsa</groupId>
<artifactId>mvn-golang-example-hello-world</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>mvn-golang</packaging>
<name>GoLangHelloWorld</name>
<description>Just a small example project to build a GoLang module with mvn-golang-wrapper</description>
<url>https://github.com/raydac/mvn-golang</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mvn.golang.go.version>1.18</mvn.golang.go.version>
<mvn.golang.wrapper.version>2.3.9</mvn.golang.wrapper.version>
<mvn.golang.disable.ssl.check>true</mvn.golang.disable.ssl.check>
<target.name>binResult</target.name>
<final.extension></final.extension>
</properties>
<profiles>
<profile>
<id>when-windows</id>
<activation>
<os>
<family>windows</family>
</os>
</activation>
<properties>
<final.extension>.exe</final.extension>
</properties>
</profile>
</profiles>
<build>
<sourceDirectory>${basedir}${file.separator}src</sourceDirectory>
<directory>${basedir}${file.separator}bin</directory>
<defaultGoal>clean package</defaultGoal>
<finalName>${target.name}${final.extension}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<followSymLinks>false</followSymLinks>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${basedir}${file.separator}pkg</directory>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-golang-wrapper</artifactId>
<version>${mvn.golang.wrapper.version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>