-
Notifications
You must be signed in to change notification settings - Fork 30
/
pom.xml
152 lines (145 loc) · 6.27 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<?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>org.wso2.apim.monetization</groupId>
<artifactId>org.wso2.apim.monetization.impl</artifactId>
<version>1.5.1-SNAPSHOT</version>
<packaging>bundle</packaging>
<parent>
<groupId>org.wso2</groupId>
<artifactId>wso2</artifactId>
<version>1.3</version>
</parent>
<dependencies>
<dependency>
<groupId>org.wso2.carbon.apimgt</groupId>
<artifactId>org.wso2.carbon.apimgt.impl</artifactId>
<version>${carbon.apimgt.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.apimgt</groupId>
<artifactId>org.wso2.carbon.apimgt.api</artifactId>
<version>${carbon.apimgt.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.apimgt</groupId>
<artifactId>org.wso2.carbon.apimgt.rest.api.common</artifactId>
<version>${carbon.apimgt.version}</version>
</dependency>
<dependency>
<groupId>com.stripe</groupId>
<artifactId>stripe-java</artifactId>
<version>${stripe.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons.lang.version}</version>
</dependency>
<dependency>
<groupId>co.elastic.clients</groupId>
<artifactId>elasticsearch-java</artifactId>
<version>${elastic.client.version}</version>
</dependency>
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-client</artifactId>
<version>${elastic.rest.client.version}</version>
</dependency>
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-api</artifactId>
<version>${opentelemetry-api.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
<version>${http.async.client.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.parsson</groupId>
<artifactId>parsson</artifactId>
<version>${parsson.version}</version>
</dependency>
</dependencies>
<properties>
<carbon.apimgt.version>9.29.119</carbon.apimgt.version>
<commons.lang.version>2.6</commons.lang.version>
<stripe.version>9.8.0</stripe.version>
<elastic.client.version>8.13.1</elastic.client.version>
<elastic.rest.client.version>8.13.1</elastic.rest.client.version>
<opentelemetry-api.version>1.29.0</opentelemetry-api.version>
<http.async.client.version>4.1.5</http.async.client.version>
<jakarta.json.version>2.0.1</jakarta.json.version>
<parsson.version>1.0.1</parsson.version>
<maven.bundle.version>3.2.0</maven.bundle.version>
<maven.compiler.version>3.5.1</maven.compiler.version>
<maven.scr.version>1.0.10</maven.scr.version>
<project.scm.id>scm-server</project.scm.id>
</properties>
<scm>
<url>https://github.com/wso2-extensions/wso2-am-stripe-plugin.git</url>
<developerConnection>scm:git:https://github.com/wso2-extensions/wso2-am-stripe-plugin.git</developerConnection>
<connection>scm:git:https://github.com/wso2-extensions/wso2-am-stripe-plugin.git</connection>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${maven.bundle.version}</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Private-Package>
co.elastic.clients.*,
org.elasticsearch.client.*,
</Private-Package>
<Export-Package>
org.wso2.apim.monetization.impl.*,
org.eclipse.parsson.*,
</Export-Package>
<Import-Package>
!com.google.gson.internal,
io.opentelemetry.api.common.*,
org.apache.http.impl.nio.*,
org.apache.http.nio.*,
</Import-Package>
<DynamicImport-Package>*</DynamicImport-Package>
<Embed-Dependency>
opentelemetry-api;scope=compile|runtime;inline=false,
httpasyncclient;scope=compile|runtime;inline=false,
</Embed-Dependency>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<version>${maven.scr.version}</version>
<executions>
<execution>
<id>generate-scr-scrdescriptor</id>
<goals>
<goal>scr</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>