Project

General

Profile

« Previous | Next » 

Revision 397763df

Added by Andreas Kohlbecker over 12 years ago

upgrading unitils to v3.2 (tests not yet working)

View differences:

pom.xml
23 23
	<properties>
24 24
		<spring.version>3.0.4.RELEASE</spring.version>
25 25
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
26
    <unitils.version>3.2</unitils.version>
26 27
	</properties>
27 28
	<scm>
28 29
		<connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/</connection>
......
577 578
		</repository>
578 579
	</distributionManagement>
579 580
	<!-- **** DEPENDENCIES **** -->
580
	<dependencies>
581
<dependencies>
582
  <!-- is this still needed????
581 583
		<dependency>
582 584
			<groupId>org.unitils</groupId>
583 585
			<artifactId>unitils</artifactId>
584 586
		</dependency>
587
      -->
585 588
		<dependency>
586 589
			<groupId>junit</groupId>
587 590
			<artifactId>junit</artifactId>
588
      <version>4.7</version>
589 591
		</dependency>
590 592
		<dependency>
591 593
			<groupId>log4j</groupId>
......
680 682
				<artifactId>jaxb-xjc</artifactId>
681 683
				<version>2.1.6</version>
682 684
			</dependency>
683
			<!-- ******* VARIOUS ******* -->
684
			<dependency>
685
				<groupId>log4j</groupId>
686
				<artifactId>log4j</artifactId>
687
				<version>1.2.15</version>
688
			</dependency>
689
			<!-- hibernate 3.4 uses slf4j -->
685
			<!-- ******* hibernate 3.4 uses slf4j ******* -->
690 686
			<dependency>
691 687
				<groupId>org.slf4j</groupId>
692 688
				<artifactId>slf4j-api</artifactId>
......
697 693
				<artifactId>slf4j-log4j12</artifactId>
698 694
				<version>1.5.6</version>
699 695
			</dependency>
696
      <!-- ******* testing ******* -->
700 697
			<dependency>
701 698
				<groupId>junit</groupId>
702 699
				<artifactId>junit</artifactId>
703
				<version>4.6</version>
700
				<version>4.7</version>
704 701
				<scope>test</scope>
705 702
			</dependency>
703
      <dependency>
704
        <groupId>com.carrotsearch</groupId>
705
        <artifactId>junit-benchmarks</artifactId>
706
        <version>0.3.0</version>
707
        <scope>test</scope>
708
      </dependency>
706 709
			<dependency>
707
				<groupId>org.unitils</groupId>
708
				<artifactId>unitils</artifactId>
709
				<version>1.0</version>
710
        <groupId>org.unitils</groupId>
711
        <artifactId>unitils-core</artifactId>
712
        <version>${unitils.version}</version>
710 713
				<scope>test</scope>
711 714
			</dependency>
715
      <dependency>
716
        <groupId>org.unitils</groupId>
717
        <artifactId>unitils-database</artifactId>
718
        <version>${unitils.version}</version>
719
        <scope>test</scope>
720
      </dependency>
721
      <dependency>
722
        <groupId>org.unitils</groupId>
723
        <artifactId>unitils-dbmaintainer</artifactId>
724
        <version>${unitils.version}</version>
725
        <scope>test</scope>
726
      </dependency>
727
      <dependency>
728
        <groupId>org.unitils</groupId>
729
        <artifactId>unitils-dbunit</artifactId>
730
        <version>${unitils.version}</version>
731
        <scope>test</scope>
732
      </dependency>
733
       <dependency>
734
        <groupId>org.unitils</groupId>
735
        <artifactId>unitils-easymock</artifactId>
736
        <version>${unitils.version}</version>
737
        <scope>test</scope>
738
      </dependency>
739
      <dependency>
740
        <groupId>org.unitils</groupId>
741
        <artifactId>unitils-mock</artifactId>
742
        <version>${unitils.version}</version>
743
        <scope>test</scope>
744
      </dependency>
745
      <dependency>
746
        <groupId>org.unitils</groupId>
747
        <artifactId>unitils-inject</artifactId>
748
        <version>${unitils.version}</version>
749
        <scope>test</scope>
750
      </dependency>
751
       <dependency>
752
        <groupId>org.unitils</groupId>
753
        <artifactId>unitils-orm</artifactId>
754
        <version>${unitils.version}</version>
755
        <scope>test</scope>
756
      </dependency>
757
       <dependency>
758
        <groupId>org.unitils</groupId>
759
        <artifactId>unitils-spring</artifactId>
760
        <version>${unitils.version}</version>
761
        <scope>test</scope>
762
      </dependency>
712 763
			<dependency>
713 764
				<groupId>org.easymock</groupId>
714 765
				<artifactId>easymock</artifactId>
715
				<version>2.2</version>
766
				<version>3.0</version>
716 767
				<scope>test</scope>
717 768
			</dependency>
718 769
			<dependency>
719 770
				<groupId>xmlunit</groupId>
720 771
				<artifactId>xmlunit</artifactId>
721
				<version>1.2</version>
772
				<version>1.3</version>
722 773
				<scope>test</scope>
723 774
			</dependency>
775
      <dependency>
776
        <groupId>org.dbunit</groupId>
777
        <artifactId>dbunit</artifactId>
778
        <version>2.4.8</version>
779
        <scope>test</scope>
780
      </dependency>
781
      <!-- ******* aspect ******* -->
724 782
			<dependency>
725 783
				<groupId>org.aspectj</groupId>
726 784
				<artifactId>aspectjrt</artifactId>
......
731 789
				<artifactId>aspectjweaver</artifactId>
732 790
				<version>1.6.3</version>
733 791
			</dependency>
792
      <!-- ******* VARIOUS ******* -->
793
      <dependency>
794
        <groupId>log4j</groupId>
795
        <artifactId>log4j</artifactId>
796
        <version>1.2.15</version>
797
      </dependency>
734 798
			<dependency>
735 799
				<groupId>javax.annotation</groupId>
736 800
				<artifactId>jsr250-api</artifactId>
......
741 805
				<artifactId>opencsv</artifactId>
742 806
				<version>1.8</version>
743 807
			</dependency>
744
			<dependency>
745
				<groupId>org.dbunit</groupId>
746
				<artifactId>dbunit</artifactId>
747
				<version>2.2</version>
748
				<scope>test</scope>
749
			</dependency>
750 808
			<dependency>
751 809
				<groupId>org.eclipse</groupId>
752 810
				<artifactId>osgi</artifactId>

Also available in: Unified diff