Skip to content

Commit b1037b0

Browse files
committed
Start work on next release
1 parent bb3f879 commit b1037b0

File tree

3 files changed

+24
-16
lines changed

3 files changed

+24
-16
lines changed

example/getting-started/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<packaging>pom</packaging>
88

99
<properties>
10-
<axway.maven.plugin.ver>1.1.0</axway.maven.plugin.ver>
10+
<axway.maven.plugin.ver>1.2.0-SNAPSHOT</axway.maven.plugin.ver>
1111
</properties>
1212

1313
<modules>

pom.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<groupId>com.axway.maven.plugins</groupId>
2121
<artifactId>apigw-maven-plugin</artifactId>
22-
<version>1.1.0</version>
22+
<version>1.2.0-SNAPSHOT</version>
2323
<packaging>maven-plugin</packaging>
2424

2525
<name>Axway API Gateway Maven Plugin</name>
@@ -65,6 +65,8 @@
6565
<maven.compiler.target>1.8</maven.compiler.target>
6666

6767
<jackson.version>[2.9.9.1,)</jackson.version>
68+
<karate.version>0.9.6</karate.version>
69+
<cucumber.version>5.4.0</cucumber.version>
6870

6971
<maven.wagon.http.pool>false</maven.wagon.http.pool>
7072
</properties>
@@ -111,6 +113,26 @@
111113
<artifactId>jackson-databind</artifactId>
112114
<version>${jackson.version}</version>
113115
</dependency>
116+
<dependency>
117+
<groupId>com.intuit.karate</groupId>
118+
<artifactId>karate-core</artifactId>
119+
<version>${karate.version}</version>
120+
</dependency>
121+
<dependency>
122+
<groupId>com.intuit.karate</groupId>
123+
<artifactId>karate-apache</artifactId>
124+
<version>${karate.version}</version>
125+
</dependency>
126+
<dependency>
127+
<groupId>com.intuit.karate</groupId>
128+
<artifactId>karate-junit5</artifactId>
129+
<version>${karate.version}</version>
130+
</dependency>
131+
<dependency>
132+
<groupId>net.masterthought</groupId>
133+
<artifactId>cucumber-reporting</artifactId>
134+
<version>${cucumber.version}</version>
135+
</dependency>
114136
</dependencies>
115137

116138
<build>

src/main/resources-filtered/META-INF/plexus/components.xml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,5 @@
6666
<packaging>axway-server-archive</packaging>
6767
</configuration>
6868
</component>
69-
<component>
70-
<role>org.apache.maven.artifact.handler.ArtifactHandler</role>
71-
<role-hint>axway-deployment-archive</role-hint>
72-
<implementation>org.apache.maven.artifact.handler.DefaultArtifactHandler</implementation>
73-
<configuration>
74-
<!--the extension used by Maven in the repository -->
75-
<extension>axdar</extension>
76-
<!--the type used when specifying dependencies etc. -->
77-
<type>axway-deployment-archive</type>
78-
<!--the packaging used when declaring an implementation of the packaging -->
79-
<packaging>axway-deployment-archive</packaging>
80-
</configuration>
81-
</component>
82-
8369
</components>
8470
</component-set>

0 commit comments

Comments
 (0)