blob: 8c6c05b24ee8c82f2c22425e7247aa24dd8b7404 (
plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<?xml version="1.0"?>
<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>
<packaging>pom</packaging>
<groupId>org.onap.testsuite.python-testing-utils</groupId>
<artifactId>robotframework-onap</artifactId>
<name>robotframework-onap</name>
<version>0.4.0-SNAPSHOT</version>
<description>Scripts written to be used during robot framework testing</description>
<parent>
<groupId>org.onap.oparent</groupId>
<artifactId>oparent-python</artifactId>
<version>1.2.3</version>
<relativePath/>
</parent>
<properties>
<!-- this wont work because pip applies a regex to names while this doesnt https://www.python.org/dev/peps/pep-0427/#id12
<wheel.name>${project.artifactId}-${python_version}-py2-none-any.whl</wheel.name>-->
<wheel.name>robotframework_onap-${python_version}-py2-none-any.whl</wheel.name>
<python.sourceDirectory>${project.basedir}</python.sourceDirectory>
<python.pypi.repository>https://nexus3.onap.org/repository/PyPi.snapshot/</python.pypi.repository>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<configuration>
<artifacts>
<artifact>
<file>${project.build.directory}/maven-python/dist/${wheel.name}</file>
<type>whl</type>
</artifact>
</artifacts>
<skipAttach>false</skipAttach>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.UltimateDogg</groupId>
<artifactId>maven-python-distribute-plugin</artifactId>
<executions>
<execution>
<id>package</id>
<goals>
<goal>package</goal>
</goals>
</execution>
<execution>
<id>process</id>
<goals>
<goal>process-sources</goal>
</goals>
</execution>
<execution>
<id>deploy</id>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
<configuration>
<repository>${python.pypi.repository}</repository>
<sourceDirectory>${python.sourceDirectory}</sourceDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>tox-test</id>
<configuration>
<workingDirectory>${project.build.directory}</workingDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|