Changeset 579 for trunk/quest-ui-core


Ignore:
Timestamp:
08/20/12 13:52:59 (12 years ago)
Author:
pharms
Message:
  • initial support for building assemblies of quest including the plugins
Location:
trunk/quest-ui-core
Files:
3 added
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/quest-ui-core/pom.xml

    r527 r579  
    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>de.ugoe.cs.quest</groupId> 
    5         <artifactId>quest-ui-core</artifactId> 
    6         <version>0.0.1-SNAPSHOT</version> 
    7         <name>quest-ui-core</name> 
    8         <scm> 
    9                 <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-core</url> 
    10         </scm> 
    11         <repositories> 
    12                 <repository> 
    13                         <id>quest-repo</id> 
    14                         <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url> 
    15                 </repository> 
    16         </repositories> 
    17         <dependencies> 
    18                 <dependency> 
    19                         <groupId>de.ugoe.cs</groupId> 
    20                         <artifactId>java-utils</artifactId> 
    21                         <version>0.0.1-SNAPSHOT</version> 
    22                 </dependency> 
    23                 <dependency> 
    24                         <groupId>de.ugoe.cs.quest</groupId> 
    25                         <artifactId>quest-core-events</artifactId> 
    26                         <version>0.0.1-SNAPSHOT</version> 
    27                 </dependency> 
    28                 <dependency> 
    29                         <groupId>de.ugoe.cs.quest</groupId> 
    30                         <artifactId>quest-core-usageprofiles</artifactId> 
    31                         <version>0.0.1-SNAPSHOT</version> 
    32                 </dependency> 
    33                 <dependency> 
    34                         <groupId>de.ugoe.cs.quest</groupId> 
    35                         <artifactId>quest-core-coverage</artifactId> 
    36                         <version>0.0.1-SNAPSHOT</version> 
    37                 </dependency> 
    38                 <dependency> 
    39                         <groupId>de.ugoe.cs.quest</groupId> 
    40                         <artifactId>quest-core-assertions</artifactId> 
    41                         <version>0.0.1-SNAPSHOT</version> 
    42                 </dependency> 
    43                 <dependency> 
    44                         <groupId>de.ugoe.cs.quest</groupId> 
    45                         <artifactId>quest-core-testgeneration</artifactId> 
    46                         <version>0.0.1-SNAPSHOT</version> 
    47                 </dependency> 
    48                 <dependency> 
    49                         <groupId>net.sf.jung</groupId> 
    50                         <artifactId>jung-visualization</artifactId> 
    51                         <version>2.0.1</version> 
    52                 </dependency> 
    53                 <dependency> 
    54                         <groupId>net.sf.jung</groupId> 
    55                         <artifactId>jung-graph-impl</artifactId> 
    56                         <version>2.0.1</version> 
    57                 </dependency> 
    58                 <dependency> 
    59                         <groupId>log4j</groupId> 
    60                         <artifactId>log4j</artifactId> 
    61                         <version>1.2.17</version> 
    62                 </dependency> 
    63                 <dependency> 
    64                         <groupId>commons-codec</groupId> 
    65                         <artifactId>commons-codec</artifactId> 
    66                         <version>1.6</version> 
    67                 </dependency> 
    68                 <dependency> 
    69                         <groupId>jdom</groupId> 
    70                         <artifactId>jdom</artifactId> 
    71                         <version>1.1</version> 
    72                 </dependency> 
    73                 <dependency> 
    74                         <groupId>edu.umd.cs</groupId> 
    75                         <artifactId>guitar-model-core</artifactId> 
    76                         <version>1.0</version> 
    77                 </dependency> 
    78         </dependencies> 
    79         <build> 
    80                 <plugins> 
    81                         <plugin> 
    82                                 <artifactId>maven-compiler-plugin</artifactId> 
    83                                 <version>2.3.2</version> 
    84                                 <configuration> 
    85                                         <source>1.6</source> 
    86                                         <target>1.6</target> 
    87                                 </configuration> 
    88                         </plugin> 
    89                 </plugins> 
    90         </build> 
     1<project 
     2  xmlns="http://maven.apache.org/POM/4.0.0" 
     3  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     4  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" 
     5> 
     6  <modelVersion>4.0.0</modelVersion> 
     7  <groupId>de.ugoe.cs.quest</groupId> 
     8  <artifactId>quest-ui-core</artifactId> 
     9  <version>0.0.1-SNAPSHOT</version> 
     10  <name>quest-ui-core</name> 
     11  <scm> 
     12    <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-core</url> 
     13  </scm> 
     14  <repositories> 
     15    <repository> 
     16      <id>quest-repo</id> 
     17      <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url> 
     18    </repository> 
     19  </repositories> 
     20  <dependencies> 
     21    <dependency> 
     22      <groupId>de.ugoe.cs</groupId> 
     23      <artifactId>java-utils</artifactId> 
     24      <version>0.0.1-SNAPSHOT</version> 
     25    </dependency> 
     26    <dependency> 
     27      <groupId>de.ugoe.cs.quest</groupId> 
     28      <artifactId>quest-core-events</artifactId> 
     29      <version>0.0.1-SNAPSHOT</version> 
     30    </dependency> 
     31    <dependency> 
     32      <groupId>de.ugoe.cs.quest</groupId> 
     33      <artifactId>quest-core-usageprofiles</artifactId> 
     34      <version>0.0.1-SNAPSHOT</version> 
     35    </dependency> 
     36    <dependency> 
     37      <groupId>de.ugoe.cs.quest</groupId> 
     38      <artifactId>quest-core-coverage</artifactId> 
     39      <version>0.0.1-SNAPSHOT</version> 
     40    </dependency> 
     41    <dependency> 
     42      <groupId>de.ugoe.cs.quest</groupId> 
     43      <artifactId>quest-core-assertions</artifactId> 
     44      <version>0.0.1-SNAPSHOT</version> 
     45    </dependency> 
     46    <dependency> 
     47      <groupId>de.ugoe.cs.quest</groupId> 
     48      <artifactId>quest-core-testgeneration</artifactId> 
     49      <version>0.0.1-SNAPSHOT</version> 
     50    </dependency> 
     51    <dependency> 
     52      <groupId>net.sf.jung</groupId> 
     53      <artifactId>jung-visualization</artifactId> 
     54      <version>2.0.1</version> 
     55    </dependency> 
     56    <dependency> 
     57      <groupId>net.sf.jung</groupId> 
     58      <artifactId>jung-graph-impl</artifactId> 
     59      <version>2.0.1</version> 
     60    </dependency> 
     61    <dependency> 
     62      <groupId>log4j</groupId> 
     63      <artifactId>log4j</artifactId> 
     64      <version>1.2.17</version> 
     65    </dependency> 
     66    <dependency> 
     67      <groupId>commons-codec</groupId> 
     68      <artifactId>commons-codec</artifactId> 
     69      <version>1.6</version> 
     70    </dependency> 
     71    <dependency> 
     72      <groupId>jdom</groupId> 
     73      <artifactId>jdom</artifactId> 
     74      <version>1.1</version> 
     75    </dependency> 
     76    <dependency> 
     77      <groupId>edu.umd.cs</groupId> 
     78      <artifactId>guitar-model-core</artifactId> 
     79      <version>1.0</version> 
     80    </dependency> 
     81  </dependencies> 
     82  <build> 
     83    <plugins> 
     84      <plugin> 
     85        <artifactId>maven-compiler-plugin</artifactId> 
     86        <version>2.3.2</version> 
     87        <configuration> 
     88          <source>1.6</source> 
     89          <target>1.6</target> 
     90        </configuration> 
     91      </plugin> 
     92      <plugin> 
     93        <artifactId>maven-assembly-plugin</artifactId> 
     94        <version>2.2-beta-2</version> 
     95        <configuration> 
     96          <descriptors> 
     97            <descriptor>src/main/assembly/config.xml</descriptor> 
     98          </descriptors> 
     99        </configuration> 
     100        <executions> 
     101          <execution> 
     102            <id>make-assembly</id> 
     103            <phase>package</phase> 
     104            <goals> 
     105              <goal>single</goal> 
     106            </goals> 
     107          </execution> 
     108        </executions> 
     109      </plugin> 
     110    </plugins> 
     111  </build> 
    91112</project> 
  • trunk/quest-ui-core/src/main/java/de/ugoe/cs/quest/log4j/Log4JLogger.java

    r432 r579  
    3535         */ 
    3636        public Log4JLogger() { 
    37                 PropertyConfigurator.configure("misc/log4j.properties"); 
     37                PropertyConfigurator.configure("data/log4j.properties"); 
    3838                logger = Logger.getLogger("de.ugoe.cs.quest"); 
    3939                Console.getInstance().registerErrorListener(this); 
Note: See TracChangeset for help on using the changeset viewer.