Changeset 527


Ignore:
Timestamp:
08/01/12 12:57:38 (12 years ago)
Author:
sherbold
Message:
  • removed components that were moved to quest-ui-swt and quest-runner from quest-ui-core
Location:
trunk/quest-ui-core
Files:
3 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-ui-core/.classpath

    r488 r527  
    22<classpath> 
    33        <classpathentry kind="src" output="target/classes" path="src/main/java"> 
     4                <attributes> 
     5                        <attribute name="optional" value="true"/> 
     6                        <attribute name="maven.pomderived" value="true"/> 
     7                </attributes> 
     8        </classpathentry> 
     9        <classpathentry kind="src" output="target/test-classes" path="src/test/java"> 
    410                <attributes> 
    511                        <attribute name="optional" value="true"/> 
  • trunk/quest-ui-core/pom.xml

    r524 r527  
    1010        </scm> 
    1111        <repositories> 
    12                 <repository> 
    13                         <id>swt-repo</id> 
    14                         <url>https://swt-repo.googlecode.com/svn/repo</url> 
    15                 </repository> 
    1612                <repository> 
    1713                        <id>quest-repo</id> 
     
    7167                </dependency> 
    7268                <dependency> 
    73                         <groupId>net.sf.jopt-simple</groupId> 
    74                         <artifactId>jopt-simple</artifactId> 
    75                         <version>4.3</version> 
    76                 </dependency> 
    77                 <dependency> 
    7869                        <groupId>jdom</groupId> 
    7970                        <artifactId>jdom</artifactId> 
    8071                        <version>1.1</version> 
    81                 </dependency> 
    82                 <dependency> 
    83                         <groupId>${swt.groupId}</groupId> 
    84                         <artifactId>${swt.artifactId}</artifactId> 
    85                         <version>3.8</version> 
    86                 </dependency> 
    87                 <dependency> 
    88                         <groupId>org.eclipse</groupId> 
    89                         <artifactId>ui-forms</artifactId> 
    90                         <version>3.5</version> 
    9172                </dependency> 
    9273                <dependency> 
     
    9677                </dependency> 
    9778        </dependencies> 
    98  
    99         <profiles> 
    100                 <profile> 
    101                         <id>Windows x86</id> 
    102                         <activation> 
    103                                 <os> 
    104                                         <family>windows</family> 
    105                                         <arch>x86</arch> 
    106                                 </os> 
    107                         </activation> 
    108                         <properties> 
    109                                 <swt.groupId>org.eclipse.swt</swt.groupId> 
    110                                 <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId> 
    111                         </properties> 
    112                 </profile> 
    113                 <profile> 
    114                         <id>Windows amd64</id> 
    115                         <activation> 
    116                                 <os> 
    117                                         <family>windows</family> 
    118                                         <arch>amd64</arch> 
    119                                 </os> 
    120                         </activation> 
    121                         <properties> 
    122                                 <swt.groupId>org.eclipse.swt</swt.groupId> 
    123                                 <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId> 
    124                         </properties> 
    125                 </profile> 
    126                 <profile> 
    127                         <id>Linux x86</id> 
    128                         <activation> 
    129                                 <os> 
    130                                         <family>linux</family> 
    131                                         <arch>x86</arch> 
    132                                 </os> 
    133                         </activation> 
    134                         <properties> 
    135                                 <swt.groupId>org.eclipse.swt</swt.groupId> 
    136                                 <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId> 
    137                         </properties> 
    138                 </profile> 
    139                 <profile> 
    140                         <id>Linux i386</id> 
    141                         <activation> 
    142                                 <os> 
    143                                         <family>linux</family> 
    144                                         <arch>i386</arch> 
    145                                 </os> 
    146                         </activation> 
    147                         <properties> 
    148                                 <swt.groupId>org.eclipse.swt</swt.groupId> 
    149                                 <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId> 
    150                         </properties> 
    151                 </profile> 
    152                 <profile> 
    153                         <id>Linux x86_64</id> 
    154                         <activation> 
    155                                 <os> 
    156                                         <family>linux</family> 
    157                                         <arch>x86_64</arch> 
    158                                 </os> 
    159                         </activation> 
    160                         <properties> 
    161                                 <swt.groupId>org.eclipse.swt</swt.groupId> 
    162                                 <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId> 
    163                         </properties> 
    164                 </profile> 
    165                 <profile> 
    166                         <id>Linux amd64</id> 
    167                         <activation> 
    168                                 <os> 
    169                                         <family>linux</family> 
    170                                         <arch>amd64</arch> 
    171                                 </os> 
    172                         </activation> 
    173                         <properties> 
    174                                 <swt.groupId>org.eclipse.swt</swt.groupId> 
    175                                 <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId> 
    176                         </properties> 
    177                 </profile> 
    178                 <profile> 
    179                         <id>Linux ppc64</id> 
    180                         <activation> 
    181                                 <os> 
    182                                         <family>linux</family> 
    183                                         <arch>ppc64</arch> 
    184                                 </os> 
    185                         </activation> 
    186                         <properties> 
    187                                 <swt.groupId>org.eclipse.swt</swt.groupId> 
    188                                 <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId> 
    189                         </properties> 
    190                 </profile> 
    191         </profiles> 
    192  
    19379        <build> 
    19480                <plugins> 
Note: See TracChangeset for help on using the changeset viewer.