Subversion Repositories SmartDukaan

Rev

Rev 9028 | Go to most recent revision | 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"
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>
4
 
5
    <groupId>in.shop2020</groupId>
6
    <artifactId>AdwordsServices</artifactId>
7
    <version>1.0-SNAPSHOT</version>
8
    <packaging>jar</packaging>
9
 
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>
17
 
18
    <properties>
19
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20
    </properties>
21
 
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>
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>
152
		 <groupId>com.google.api-ads.examples</groupId>
153
		 <artifactId>adwords-axis-examples</artifactId>
154
  		 <version>1.20.0</version>
155
		</dependency>
156
		<dependency>
157
		<groupId>javax.inject</groupId>
158
  		<artifactId>javax.inject</artifactId>
159
  		<version>1</version>
160
		</dependency>
161
		<dependency>
9346 manish.sha 162
		<groupId>com.google.guava</groupId>
163
		<artifactId>guava</artifactId>
164
		<version>r09</version>
165
		</dependency>
166
		<dependency>
167
		<groupId>xpp3</groupId>
168
		<artifactId>xpp3</artifactId>
169
		<version>1.1.4c</version>
170
		</dependency>
171
		<dependency>
172
			<groupId>com.google.api-client</groupId>
173
			<artifactId>google-api-client</artifactId>
174
			<version>1.5.0-beta</version>
175
		</dependency>
176
		<dependency>
177
		<groupId>com.google.http-client</groupId>
178
	    <artifactId>google-http-client</artifactId>
179
	    <version>1.5.0-beta</version>
180
		</dependency>
181
		<dependency>
182
		<groupId>org.mongodb</groupId>
183
		<artifactId>mongo-java-driver</artifactId>
184
		<version>2.11.0</version>
185
		</dependency>
186
		<dependency>
9028 manish.sha 187
			<groupId>in.shop2020</groupId>
188
			<artifactId>ThriftConfig</artifactId>
189
			<version>1.0-SNAPSHOT</version>
190
			<exclusions>
191
				<exclusion>
192
					<groupId>readonly.slf4j</groupId>
193
					<artifactId>slf4j-api</artifactId>
194
				</exclusion>
195
				<exclusion>
196
					<groupId>readonly.slf4j</groupId>
197
					<artifactId>slf4j-simple</artifactId>
198
				</exclusion>
199
			</exclusions>
200
		</dependency>
201
		<dependency>
202
			<groupId>in.shop2020</groupId>
203
			<artifactId>Common</artifactId>
204
			<version>1.0-SNAPSHOT</version>
205
			<exclusions>
206
				<exclusion>
207
					<groupId>readonly.slf4j</groupId>
208
					<artifactId>slf4j-api</artifactId>
209
				</exclusion>
210
				<exclusion>
211
					<groupId>readonly.slf4j</groupId>
212
					<artifactId>slf4j-simple</artifactId>
213
				</exclusion>
214
			</exclusions>
215
		</dependency>
216
	</dependencies>
217
</project>