jose_freitas

sonar maven profile

Jun 15th, 2011
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.00 KB | None | 0 0
  1. <profile>
  2.               <id>sonar</id>
  3.               <activation>
  4.                 <activeByDefault>false</activeByDefault>
  5.               </activation>    
  6.               <properties>
  7.                 <sonar.host.url>http://servername:9000</sonar.host.url>
  8.                 <sonar.jdbc.url>jdbc:sqlserver://servername;databaseName=db;integratedSecurity=true;</sonar.jdbc.url>
  9.                 <sonar.jdbc.username>user</sonar.jdbc.username>
  10.                 <sonar.jdbc.password>passwd</sonar.jdbc.password>
  11.                <sonar.jdbc.driver>net.sourceforge.jtds.jdbc.Driver</sonar.jdbc.driver>
  12.               </properties>
  13.               <build>
  14.               <plugins>
  15.                 <plugin>
  16.                   <groupId>org.codehaus.mojo</groupId>
  17.                   <artifactId>sonar-maven-plugin</artifactId>
  18.                   <version>2.0-beta-2</version>
  19.                 </plugin>
  20.               </plugins>
  21.               </build>
  22.               <dependencies>
  23.                 <dependency>
  24.                     <groupId>net.sourceforge.jtds</groupId>
  25.                     <artifactId>jtds</artifactId>
  26.                     <version>1.2.4</version>
  27.                 </dependency>
  28.               </dependencies>
  29.         </profile>
Advertisement
Add Comment
Please, Sign In to add comment