Subversion Repositories SmartDukaan

Rev

Rev 3520 | Rev 3547 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3520 Rev 3530
Line 7... Line 7...
7
    <version>1.0-SNAPSHOT</version>
7
    <version>1.0-SNAPSHOT</version>
8
    <packaging>jar</packaging>
8
    <packaging>jar</packaging>
9
 
9
 
10
    <name>CRMService</name>
10
    <name>CRMService</name>
11
    <url>http://maven.apache.org</url>
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>
12
 
17
 
13
    <properties>
18
    <properties>
14
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15
    </properties>
20
    </properties>
16
 
21
 
17
    <build>
22
    <build>
18
        <plugins>
23
        <plugins>
19
            <plugin>
24
            <plugin>
20
                <artifactId>maven-assembly-plugin</artifactId>
25
                <artifactId>maven-assembly-plugin</artifactId>
-
 
26
                <version>2.2.1</version>
21
                <configuration>
27
                <configuration>
22
                    <archive>
28
                    <archive>
23
                        <manifest>
29
                        <manifest>
24
                            <mainClass>in.shop2020.crm.service.CRMServer</mainClass>
30
                            <mainClass>in.shop2020.crm.service.CRMServer</mainClass>
25
                        </manifest>
31
                        </manifest>
26
                    </archive>
32
                    </archive>
27
                    <descriptorRefs>
33
                    <descriptorRefs>
28
                        <descriptorRef>jar-with-dependencies</descriptorRef>
34
                        <descriptorRef>jar-with-dependencies</descriptorRef>
29
                    </descriptorRefs>
35
                    </descriptorRefs>
30
                </configuration>
36
                </configuration>
-
 
37
                <executions>
-
 
38
                    <execution>
-
 
39
                        <id>make-assembly</id> <!-- this is used for inheritance merges -->
-
 
40
                        <phase>package</phase> <!-- bind to the packaging phase -->
-
 
41
                        <goals>
-
 
42
                            <goal>single</goal>
-
 
43
                        </goals>
-
 
44
                    </execution>
-
 
45
                </executions>
31
            </plugin>
46
            </plugin>
32
        </plugins>
47
        </plugins>
33
    </build>
48
    </build>
34
 
49
 
35
    <dependencies>
50
    <dependencies>
Line 37... Line 52...
37
            <groupId>junit</groupId>
52
            <groupId>junit</groupId>
38
            <artifactId>junit</artifactId>
53
            <artifactId>junit</artifactId>
39
            <version>4.8.2</version>
54
            <version>4.8.2</version>
40
            <scope>test</scope>
55
            <scope>test</scope>
41
        </dependency>
56
        </dependency>
42
	    <dependency>
57
        <dependency>
43
	  		<groupId>org.apache.thrift</groupId>
58
            <groupId>org.apache.thrift</groupId>
44
	  		<artifactId>libthrift</artifactId>
59
            <artifactId>libthrift</artifactId>
45
	  		<version>0.7.0</version>
60
            <version>0.7.0</version>
46
		</dependency>
61
        </dependency>
47
        <dependency>
62
        <dependency>
48
            <groupId>log4j</groupId>
63
            <groupId>log4j</groupId>
49
            <artifactId>log4j</artifactId>
64
            <artifactId>log4j</artifactId>
50
            <version>1.2.16</version>
65
            <version>1.2.16</version>
51
        </dependency>
66
        </dependency>
Line 156... Line 171...
156
                <exclusion>
171
                <exclusion>
157
                    <groupId>readonly.slf4j</groupId>
172
                    <groupId>readonly.slf4j</groupId>
158
                    <artifactId>slf4j-simple</artifactId>
173
                    <artifactId>slf4j-simple</artifactId>
159
                </exclusion>
174
                </exclusion>
160
            </exclusions>
175
            </exclusions>
161
 
-
 
162
        </dependency>
176
        </dependency>
163
    </dependencies>
177
    </dependencies>
164
</project>
178
</project>