This repository was archived by the owner on Apr 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +36
-0
lines changed
src/main/java/com/diffblue/regression Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ <project name =" Regression test" default =" dist" basedir =" ." >
2
+ <description >
3
+ Simple build file
4
+ </description >
5
+ <!-- set global properties for this build -->
6
+ <property name =" src" location =" src" />
7
+ <property name =" build" location =" build" />
8
+
9
+ <target name =" init" >
10
+ <mkdir dir =" ${ build } " />
11
+ </target >
12
+
13
+ <target name =" compile" depends =" init"
14
+ description =" compile the source" >
15
+ <javac srcdir =" ${ src } " destdir =" ${ build } " />
16
+ </target >
17
+ </project >
Original file line number Diff line number Diff line change
1
+
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
+ <modelVersion >4.0.0</modelVersion >
5
+
6
+ <groupId >com.diffblue.regression</groupId >
7
+ <artifactId >diffblue-regression-test</artifactId >
8
+ <version >1</version >
9
+ <packaging >jar</packaging >
10
+
11
+ <name >Diffblue Regression Test</name >
12
+
13
+ </project >
Original file line number Diff line number Diff line change
1
+ package com .diffblue .regression ;
2
+
3
+ public class My {
4
+ public My (int i ) {
5
+ }
6
+ }
You can’t perform that action at this time.
0 commit comments