SVN-fs-dump-format-version: 2

UUID: 55774747-905a-4d4d-8427-b452b09f9606

Revision-number: 0
Prop-content-length: 56
Content-length: 56

K 8
svn:date
V 27
2012-07-19T09:43:45.664506Z
PROPS-END

Revision-number: 1
Prop-content-length: 116
Content-length: 116

K 10
svn:author
V 7
dgageot
K 8
svn:date
V 27
2012-07-19T09:43:54.379339Z
K 7
svn:log
V 14
Empty project

PROPS-END

Node-path: dummy-svn
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10

PROPS-END


Revision-number: 2
Prop-content-length: 117
Content-length: 117

K 10
svn:author
V 7
dgageot
K 8
svn:date
V 27
2012-07-19T09:44:57.393222Z
K 7
svn:log
V 15
Initial commit

PROPS-END

Node-path: dummy-svn/pom.xml
Node-kind: file
Node-action: add
Text-content-md5: 6464b7104e400c99f4af7593ef2d07eb
Text-content-sha1: 9c9e1be1313a49bfb4e05350bb4ef021d072e309
Prop-content-length: 10
Text-content-length: 1610
Content-length: 1620

PROPS-END
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>dummy</groupId>
    <artifactId>dummy</artifactId>
    <version>1.0</version>
    <packaging>jar</packaging>
    <name>Dummy</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <artifactId>maven-clean-plugin</artifactId>
                    <version>2.4.1</version>
                </plugin>
                <plugin>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>2.3.2</version>
                </plugin>
                <plugin>
                    <artifactId>maven-resources-plugin</artifactId>
                    <version>2.5</version>
                </plugin>
                <plugin>
                    <artifactId>maven-source-plugin</artifactId>
                    <version>2.1.2</version>
                </plugin>
            </plugins>
        </pluginManagement>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
    </dependencies>
</project>


Node-path: dummy-svn/src
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10

PROPS-END


Node-path: dummy-svn/src/main
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10

PROPS-END


Node-path: dummy-svn/src/main/java
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10

PROPS-END


Node-path: dummy-svn/src/main/java/org
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10

PROPS-END


Node-path: dummy-svn/src/main/java/org/dummy
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10

PROPS-END


Node-path: dummy-svn/src/main/java/org/dummy/Dummy.java
Node-kind: file
Node-action: add
Text-content-md5: 8b715ea165a8ba2e86e403bead09880e
Text-content-sha1: 50a52ac40750f504aeb657d14a32a18d98e69b4f
Prop-content-length: 10
Text-content-length: 947
Content-length: 957

PROPS-END
/*
 * Sonar, open source software quality management tool.
 * Copyright (C) 2008-2012 SonarSource
 * mailto:contact AT sonarsource DOT com
 *
 * Sonar is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * Sonar is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Sonar; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
 */
package org.dummy;

public class Dummy {
  public String sayHello() {
    return "Hello";
  }
}


