-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
159 lines (154 loc) · 5.19 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
153
154
155
156
157
158
159
<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.bbva.kltt</groupId>
<artifactId>KLTT-BenchmarkSuite</artifactId>
<version>2.0.0</version>
<packaging>bundle</packaging>
<name>KLTT-BenchmarkSuite</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<perMonVersionMinor>1.0.0</perMonVersionMinor>
<perMonVersionMajor>2.0.0</perMonVersionMajor>
<slf4jVersionMinor>1.6.1</slf4jVersionMinor>
<slf4jVersionMajor>2.0.0</slf4jVersionMajor>
<springVersionMinor>3.0.6.RELEASE</springVersionMinor>
<springVersionMajor>4.0.0</springVersionMajor>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<executions>
<execution>
<id>default-compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<target>1.6</target>
<source>1.6</source>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<version>2.3.7</version>
<configuration>
<instructions>
<Bundle-Vendor>BBVA CIB</Bundle-Vendor>
<Bundle-Name>KLTT-BenchmarkSuite</Bundle-Name>
<Bundle-Description>API to execute tests</Bundle-Description>
<Bundle-DocUrl>https://sites.google.com/a/bbva.com/low-latency/data-caching-1/benchmark-suite</Bundle-DocUrl>
<Bundle-Localisation>https://sites.google.com/a/bbva.com/low-latency/data-caching-1/benchmark-suite/5-downloads-and-release-notes</Bundle-Localisation>
<Spring-Context>META-INF/spring/*.xml</Spring-Context>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.6,JavaSE-1.7</Bundle-RequiredExecutionEnvironment>
<Export-Package>
com.bbva.kltt.benchmark;version=${project.version},
com.bbva.kltt.benchmark.api;version=${project.version},
com.bbva.kltt.benchmark.basics.conditions;version=${project.version}
com.bbva.kltt.benchmark.exception;version=${project.version}
</Export-Package>
<_exportcontents>
</_exportcontents>
<Import-Package>
com.bbva.mon.performancemonitor.api;version="[${perMonVersionMinor},${perMonVersionMajor})",
com.bbva.mon.performancemonitor.exception;version="[${perMonVersionMinor},${perMonVersionMajor})",
org.slf4j;version="[${slf4jVersionMinor},${slf4jVersionMajor})",
org.springframework.context;version="[${springVersionMinor},${springVersionMajor})",
org.springframework.context.support;version="[${springVersionMinor},${springVersionMajor})",
javax.xml.bind,
javax.xml.bind.annotation,
javax.xml.bind.annotation.adapters
</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4jVersionMinor}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.13</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${springVersionMinor}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${springVersionMinor}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${springVersionMinor}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${springVersionMinor}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>${springVersionMinor}</version>
</dependency>
<dependency>
<groupId>com.bbva.mon</groupId>
<artifactId>PerformanceMonitor</artifactId>
<version>${perMonVersionMinor}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.0.13</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>