Subversion Repositories SmartDukaan

Rev

Rev 9346 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9028 manish.sha 1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9443 manish.sha 2
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
9028 manish.sha 4
 
9443 manish.sha 5
	<groupId>in.shop2020</groupId>
6
	<artifactId>AdwordsServices</artifactId>
7
	<version>1.0-SNAPSHOT</version>
8
	<packaging>jar</packaging>
9028 manish.sha 9
 
9443 manish.sha 10
	<name>AdwordsServices</name>
11
	<url>http://maven.apache.org</url>
12
	<parent>
13
		<artifactId>parent</artifactId>
14
		<groupId>in.shop2020</groupId>
15
		<version>1.0-SNAPSHOT</version>
16
	</parent>
9028 manish.sha 17
 
9443 manish.sha 18
	<properties>
19
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20
	</properties>
9028 manish.sha 21
 
9443 manish.sha 22
	<build>
23
		<plugins>
24
			<plugin>
25
				<groupId>org.apache.maven.plugins</groupId>
26
				<artifactId>maven-compiler-plugin</artifactId>
27
				<version>2.3.2</version>
28
				<configuration>
29
					<debug>true</debug>
30
					<optimize>true</optimize>
31
					<source>1.6</source>
32
					<target>1.6</target>
33
				</configuration>
34
			</plugin>
35
			<plugin>
36
				<groupId>org.codehaus.mojo</groupId>
37
				<artifactId>exec-maven-plugin</artifactId>
38
				<version>1.2.1</version>
39
				<executions>
40
					<execution>
41
						<goals>
42
							<goal>java</goal>
43
						</goals>
44
					</execution>
45
				</executions>
46
			</plugin>
47
		</plugins>
48
	</build>
9028 manish.sha 49
	<dependencies>
50
		<dependency>
51
			<groupId>junit</groupId>
52
			<artifactId>junit</artifactId>
53
			<version>4.8.2</version>
54
			<scope>test</scope>
55
		</dependency>
56
		<dependency>
57
			<groupId>org.apache.thrift</groupId>
58
			<artifactId>libthrift</artifactId>
59
			<version>0.7.0</version>
60
		</dependency>
61
		<dependency>
62
			<groupId>log4j</groupId>
63
			<artifactId>log4j</artifactId>
64
			<version>1.2.16</version>
65
		</dependency>
66
		<dependency>
67
			<groupId>commons-logging</groupId>
68
			<artifactId>commons-logging</artifactId>
69
			<version>1.1.1</version>
70
		</dependency>
71
		<dependency>
72
			<groupId>cglib</groupId>
73
			<artifactId>cglib</artifactId>
74
			<version>2.2</version>
75
		</dependency>
76
		<dependency>
77
			<groupId>commons-pool</groupId>
78
			<artifactId>commons-pool</artifactId>
79
			<version>1.5.6</version>
80
		</dependency>
81
		<dependency>
82
			<groupId>commons-dbcp</groupId>
83
			<artifactId>commons-dbcp</artifactId>
84
			<version>1.4</version>
85
		</dependency>
86
		<dependency>
87
			<groupId>commons-daemon</groupId>
88
			<artifactId>commons-daemon</artifactId>
89
			<version>1.0.1</version>
90
		</dependency>
91
		<dependency>
92
			<groupId>aopalliance</groupId>
93
			<artifactId>aopalliance</artifactId>
94
			<version>1.0</version>
95
		</dependency>
96
		<dependency>
97
			<groupId>org.springframework</groupId>
98
			<artifactId>spring-context</artifactId>
99
			<version>3.0.5.RELEASE</version>
100
		</dependency>
101
		<dependency>
102
			<groupId>org.springframework</groupId>
103
			<artifactId>spring-core</artifactId>
104
			<version>3.0.5.RELEASE</version>
105
		</dependency>
106
		<dependency>
107
			<groupId>org.springframework</groupId>
108
			<artifactId>spring-expression</artifactId>
109
			<version>3.0.5.RELEASE</version>
110
		</dependency>
111
		<dependency>
112
			<groupId>org.springframework</groupId>
113
			<artifactId>spring-jdbc</artifactId>
114
			<version>3.0.5.RELEASE</version>
115
		</dependency>
116
		<dependency>
117
			<groupId>org.springframework</groupId>
118
			<artifactId>spring-tx</artifactId>
119
			<version>3.0.5.RELEASE</version>
120
		</dependency>
121
		<dependency>
122
			<groupId>asm</groupId>
123
			<artifactId>asm</artifactId>
124
			<version>3.1</version>
125
		</dependency>
126
		<dependency>
127
			<groupId>mysql</groupId>
128
			<artifactId>mysql-connector-java</artifactId>
129
			<version>5.1.16</version>
130
		</dependency>
131
		<dependency>
132
			<groupId>org.slf4j</groupId>
133
			<artifactId>slf4j-api</artifactId>
134
			<version>1.6.1</version>
135
		</dependency>
136
		<dependency>
137
			<groupId>org.slf4j</groupId>
138
			<artifactId>slf4j-log4j12</artifactId>
139
			<version>1.6.1</version>
140
		</dependency>
141
		<dependency>
142
			<groupId>org.mybatis</groupId>
143
			<artifactId>mybatis-spring</artifactId>
144
			<version>1.0.0</version>
145
		</dependency>
146
		<dependency>
147
			<groupId>org.mybatis</groupId>
148
			<artifactId>mybatis</artifactId>
149
			<version>3.0.4</version>
150
		</dependency>
151
		<dependency>
9443 manish.sha 152
			<groupId>com.google.api-ads.examples</groupId>
153
			<artifactId>adwords-axis-examples</artifactId>
154
			<version>1.20.0</version>
9028 manish.sha 155
		</dependency>
156
		<dependency>
9443 manish.sha 157
			<groupId>javax.inject</groupId>
158
			<artifactId>javax.inject</artifactId>
159
			<version>1</version>
9028 manish.sha 160
		</dependency>
9443 manish.sha 161
 
9028 manish.sha 162
		<dependency>
163
			<groupId>in.shop2020</groupId>
164
			<artifactId>ThriftConfig</artifactId>
165
			<version>1.0-SNAPSHOT</version>
166
			<exclusions>
167
				<exclusion>
168
					<groupId>readonly.slf4j</groupId>
169
					<artifactId>slf4j-api</artifactId>
170
				</exclusion>
171
				<exclusion>
172
					<groupId>readonly.slf4j</groupId>
173
					<artifactId>slf4j-simple</artifactId>
174
				</exclusion>
175
			</exclusions>
176
		</dependency>
177
		<dependency>
178
			<groupId>in.shop2020</groupId>
179
			<artifactId>Common</artifactId>
180
			<version>1.0-SNAPSHOT</version>
181
			<exclusions>
182
				<exclusion>
183
					<groupId>readonly.slf4j</groupId>
184
					<artifactId>slf4j-api</artifactId>
185
				</exclusion>
186
				<exclusion>
187
					<groupId>readonly.slf4j</groupId>
188
					<artifactId>slf4j-simple</artifactId>
189
				</exclusion>
190
			</exclusions>
191
		</dependency>
192
	</dependencies>
193
</project>