Subversion Repositories SmartDukaan

Rev

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

Rev 7478 Rev 7495
Line 3... Line 3...
3
  <groupId>in.shop2020</groupId>
3
  <groupId>in.shop2020</groupId>
4
  <artifactId>AmazonObjects</artifactId>
4
  <artifactId>AmazonObjects</artifactId>
5
  <version>1.0-SNAPSHOT</version>
5
  <version>1.0-SNAPSHOT</version>
6
  <name>AmazonObjects</name>
6
  <name>AmazonObjects</name>
7
  <build>
7
  <build>
8
  	<plugins>
8
    <plugins>
9
  		<plugin>
9
      <plugin>
10
  			<artifactId>maven-compiler-plugin</artifactId>
10
        <artifactId>maven-compiler-plugin</artifactId>
11
  			<version>2.4</version>
11
        <version>2.4</version>
12
  			<configuration>
12
        <configuration>
13
  			    <debug>true</debug>
13
          <debug>true</debug>
14
         		<optimize>true</optimize>
14
          <optimize>true</optimize>
15
          		<source>1.6</source>
15
          <source>1.6</source>
16
          		<target>1.6</target> 			    
16
          <target>1.6</target>
17
  			</configuration>
17
        </configuration>
18
  		</plugin>
18
      </plugin>
19
  	</plugins>
19
    </plugins>
20
  </build>
20
  </build>
21
  <dependencies>
21
  <dependencies>
22
  	<dependency>
22
    <dependency>
23
  		<groupId>org.apache.hadoop</groupId>
23
      <groupId>org.apache.hadoop</groupId>
24
  		<artifactId>libthrift</artifactId>
24
      <artifactId>libthrift</artifactId>
25
  		<version>0.5.0.0</version>
25
      <version>0.5.0.0</version>
26
  	</dependency>
26
    </dependency>
27
  	<dependency>
27
    <dependency>
28
  		<groupId>org.apache.thrift</groupId>
28
      <groupId>org.apache.thrift</groupId>
29
  		<artifactId>libthrift</artifactId>
29
      <artifactId>libthrift</artifactId>
30
  		<version>0.7.0</version>
30
      <version>0.7.0</version>
31
  	</dependency>
31
    </dependency>
32
  	<dependency>
32
    <dependency>
33
  		<groupId>com.google.code.maven-play-plugin.org.apache.thrift</groupId>
33
      <groupId>com.google.code.maven-play-plugin.org.apache.thrift</groupId>
34
  		<artifactId>thrift</artifactId>
34
      <artifactId>thrift</artifactId>
35
  		<version>0.2.0</version>
35
      <version>0.2.0</version>
36
  	</dependency>
36
    </dependency>
37
  </dependencies>
37
  </dependencies>
38
</project>
38
</project>
-
 
39