Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
4500 mandeep.dh 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
	<groupId>in.shop2020</groupId>
5
	<artifactId>WarehouseService</artifactId>
6
    <packaging>jar</packaging>
7
    <version>1.0-SNAPSHOT</version>
4574 mandeep.dh 8
 
4500 mandeep.dh 9
    <parent>
10
      <groupId>in.shop2020</groupId>
11
      <artifactId>parent</artifactId>
12
      <version>1.0-SNAPSHOT</version>
13
    </parent>
14
 
4574 mandeep.dh 15
    <build>
16
        <plugins>
17
            <plugin>
18
                <groupId>org.dstovall</groupId>
19
                <artifactId>onejar-maven-plugin</artifactId>
20
                <version>1.4.4</version>
21
                <executions>
22
                    <execution>
23
                        <configuration>
24
                            <mainClass>in.shop2020.warehouse.service.WarehouseServer</mainClass>
25
                        </configuration>
26
                        <goals>
27
                            <goal>one-jar</goal>
28
                        </goals>
29
                    </execution>
30
                </executions>
31
            </plugin>
32
        </plugins>
33
    </build>
34
 
35
    <pluginRepositories>
36
        <pluginRepository>
37
            <id>onejar-maven-plugin.googlecode.com</id>
38
            <url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
39
        </pluginRepository>
40
    </pluginRepositories>
41
 
21618 amit.gupta 42
    <dependencies>	
43
 
44
	<dependency>
45
		<groupId>commons-collections</groupId>
46
		<artifactId>commons-collections</artifactId>
47
		<version>3.2.1</version>
48
	</dependency>
4509 mandeep.dh 49
        <dependency>
4574 mandeep.dh 50
            <groupId>org.springframework</groupId>
51
            <artifactId>spring-context</artifactId>
52
            <version>3.0.5.RELEASE</version>
53
        </dependency>
54
        <dependency>
55
            <groupId>org.springframework.security</groupId>
56
            <artifactId>spring-security-config</artifactId>
57
            <version>3.0.5.RELEASE</version>
58
        </dependency>
59
        <dependency>
60
            <groupId>org.springframework</groupId>
61
            <artifactId>spring-core</artifactId>
62
            <version>3.0.5.RELEASE</version>
63
        </dependency>
64
        <dependency>
65
            <groupId>org.springframework</groupId>
66
            <artifactId>spring-expression</artifactId>
67
            <version>3.0.5.RELEASE</version>
68
        </dependency>
69
        <dependency>
70
            <groupId>org.springframework</groupId>
71
            <artifactId>spring-jdbc</artifactId>
72
            <version>3.0.5.RELEASE</version>
73
        </dependency>
74
        <dependency>
75
            <groupId>org.springframework</groupId>
76
            <artifactId>spring-tx</artifactId>
77
            <version>3.0.5.RELEASE</version>
78
        </dependency>
79
        <dependency>
4509 mandeep.dh 80
            <groupId>junit</groupId>
81
            <artifactId>junit</artifactId>
82
            <version>4.8.2</version>
83
            <scope>test</scope>
84
        </dependency>
85
        <dependency>
86
            <groupId>org.apache.thrift</groupId>
87
            <artifactId>libthrift</artifactId>
88
            <version>0.7.0</version>
89
        </dependency>
90
        <dependency>
4500 mandeep.dh 91
            <groupId>log4j</groupId>
92
            <artifactId>log4j</artifactId>
93
            <version>1.2.16</version>
94
        </dependency>
4509 mandeep.dh 95
        <dependency>
96
            <groupId>commons-logging</groupId>
97
            <artifactId>commons-logging</artifactId>
98
            <version>1.1.1</version>
99
        </dependency>
100
        <dependency>
101
            <groupId>cglib</groupId>
102
            <artifactId>cglib</artifactId>
103
            <version>2.2</version>
104
        </dependency>
105
        <dependency>
106
            <groupId>commons-pool</groupId>
107
            <artifactId>commons-pool</artifactId>
108
            <version>1.5.6</version>
109
        </dependency>
110
        <dependency>
111
            <groupId>commons-dbcp</groupId>
112
            <artifactId>commons-dbcp</artifactId>
113
            <version>1.4</version>
114
        </dependency>
115
        <dependency>
116
            <groupId>aopalliance</groupId>
117
            <artifactId>aopalliance</artifactId>
118
            <version>1.0</version>
119
        </dependency>
120
        <dependency>
121
            <groupId>asm</groupId>
122
            <artifactId>asm</artifactId>
123
            <version>3.1</version>
124
        </dependency>
125
        <dependency>
126
            <groupId>mysql</groupId>
127
            <artifactId>mysql-connector-java</artifactId>
128
            <version>5.1.16</version>
129
        </dependency>
130
        <dependency>
131
            <groupId>org.slf4j</groupId>
132
            <artifactId>slf4j-api</artifactId>
133
            <version>1.6.1</version>
134
        </dependency>
135
        <dependency>
136
            <groupId>org.slf4j</groupId>
137
            <artifactId>slf4j-log4j12</artifactId>
138
            <version>1.6.1</version>
139
        </dependency>
140
        <dependency>
141
            <groupId>org.mybatis</groupId>
142
            <artifactId>mybatis-spring</artifactId>
143
            <version>1.0.0</version>
144
        </dependency>
145
        <dependency>
146
            <groupId>org.mybatis</groupId>
147
            <artifactId>mybatis</artifactId>
148
            <version>3.0.4</version>
149
        </dependency>
150
        <dependency>
4718 anupam.sin 151
			<groupId>commons-daemon</groupId>
152
			<artifactId>commons-daemon</artifactId>
153
			<version>1.0.1</version>
154
		</dependency>
155
        <dependency>
4509 mandeep.dh 156
            <groupId>in.shop2020</groupId>
157
            <artifactId>ThriftConfig</artifactId>
158
            <version>1.0-SNAPSHOT</version>
159
            <exclusions>
160
                <exclusion>
161
                    <groupId>readonly.slf4j</groupId>
162
                    <artifactId>slf4j-api</artifactId>
163
                </exclusion>
164
                <exclusion>
165
                    <groupId>readonly.slf4j</groupId>
166
                    <artifactId>slf4j-simple</artifactId>
167
                </exclusion>
168
            </exclusions>
169
        </dependency>
170
        <dependency>
171
            <groupId>in.shop2020</groupId>
172
            <artifactId>Common</artifactId>
173
            <version>1.0-SNAPSHOT</version>
174
            <exclusions>
175
                <exclusion>
176
                    <groupId>readonly.slf4j</groupId>
177
                    <artifactId>slf4j-api</artifactId>
178
                </exclusion>
179
                <exclusion>
180
                    <groupId>readonly.slf4j</groupId>
181
                    <artifactId>slf4j-simple</artifactId>
182
                </exclusion>
183
            </exclusions>
184
        </dependency>
185
    </dependencies>
4500 mandeep.dh 186
</project>