Skip to content

Commit b05de28

Browse files
author
Alex Khamutov
authored
Merge pull request #4 from aososkov/master
Added action hash checker to be able to apply action if mutation file…
2 parents c3ebfbb + 4bbcdaa commit b05de28

25 files changed

+599
-505
lines changed

pom.xml

+136-104
Original file line numberDiff line numberDiff line change
@@ -1,123 +1,155 @@
1-
<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/xsd/maven-4.0.0.xsd">
2-
<modelVersion>4.0.0</modelVersion>
3-
4-
<groupId>com.toddfast.mutagen</groupId>
5-
<artifactId>mutagen-cassandra-tobox</artifactId>
6-
<version>0.4.7-SNAPSHOT</version>
7-
<packaging>jar</packaging>
8-
9-
<name>toddfast-mutagen-cassandra</name>
10-
11-
<description>Mutagen Cassandra is a framework (based on Mutagen) that
12-
provides CQL schema versioning and mutation for Apache Cassandra.
13-
</description>
14-
15-
<url>https://github.com/toddfast/mutagen-cassandra</url>
16-
<scm>
17-
<url>https://github.com/toddfast/mutagen-cassandra</url>
18-
<connection>scm:git:[email protected]:toddfast/mutagen-cassandra.git</connection>
19-
<developerConnection>scm:git:[email protected]:toddfast/mutagen-cassandra.git</developerConnection>
20-
</scm>
21-
22-
<licenses>
23-
<license>
24-
<name>The Apache Software License, Version 2.0</name>
25-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
26-
<distribution>repo</distribution>
27-
</license>
28-
</licenses>
29-
30-
<developers>
31-
<developer>
32-
<id>toddfast</id>
33-
<name>Todd Fast</name>
34-
<email>[email protected]</email>
35-
</developer>
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+
5+
<groupId>com.toddfast.mutagen</groupId>
6+
<artifactId>mutagen-cassandra-tobox</artifactId>
7+
<version>0.4.8-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>toddfast-mutagen-cassandra-tobox</name>
11+
12+
<description>Mutagen Cassandra is a framework (based on Mutagen) that
13+
provides CQL schema versioning and mutation for Apache Cassandra.
14+
</description>
15+
16+
<url>https://github.com/toddfast/mutagen-cassandra</url>
17+
<scm>
18+
<url>https://github.com/toddfast/mutagen-cassandra</url>
19+
<connection>scm:git:[email protected]:toddfast/mutagen-cassandra.git</connection>
20+
<developerConnection>scm:git:[email protected]:toddfast/mutagen-cassandra.git</developerConnection>
21+
</scm>
22+
23+
<licenses>
24+
<license>
25+
<name>The Apache Software License, Version 2.0</name>
26+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
27+
<distribution>repo</distribution>
28+
</license>
29+
</licenses>
30+
31+
<developers>
32+
<developer>
33+
<id>toddfast</id>
34+
<name>Todd Fast</name>
35+
<email>[email protected]</email>
36+
</developer>
3637
<developer>
3738
<id>khamutov</id>
3839
<name>Aleksandr Khamutov</name>
3940
</developer>
40-
</developers>
41-
42-
<properties>
43-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44-
<java.version>1.8</java.version>
45-
</properties>
46-
47-
<build>
48-
<plugins>
49-
<plugin>
50-
<groupId>org.apache.maven.plugins</groupId>
51-
<artifactId>maven-compiler-plugin</artifactId>
52-
<version>3.3</version>
53-
<configuration>
54-
<source>${java.version}</source>
55-
<target>${java.version}</target>
56-
</configuration>
57-
</plugin>
58-
<plugin>
59-
<groupId>org.apache.maven.plugins</groupId>
60-
<artifactId>maven-resources-plugin</artifactId>
61-
<version>2.7</version>
62-
<configuration>
63-
<encoding>UTF-8</encoding>
64-
</configuration>
65-
</plugin>
66-
</plugins>
67-
<defaultGoal>clean package</defaultGoal>
68-
</build>
69-
70-
<dependencies>
71-
72-
<dependency>
73-
<groupId>com.toddfast.mutagen</groupId>
74-
<artifactId>mutagen</artifactId>
75-
<version>0.3.0</version>
76-
</dependency>
41+
<developer>
42+
<id>aososkov</id>
43+
<name>Andrey Ososkov</name>
44+
</developer>
45+
</developers>
46+
47+
<properties>
48+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
49+
<java.version>1.8</java.version>
50+
</properties>
51+
52+
<build>
53+
<plugins>
54+
<plugin>
55+
<groupId>org.apache.maven.plugins</groupId>
56+
<artifactId>maven-resources-plugin</artifactId>
57+
<version>2.7</version>
58+
<executions>
59+
<execution>
60+
<id>copy-resources-test</id>
61+
<phase>compile</phase>
62+
<goals>
63+
<goal>copy-resources</goal>
64+
</goals>
65+
<configuration>
66+
<outputDirectory>${basedir}/target/test-classes/com/toddfast/mutagen/cassandra/test/mutations</outputDirectory>
67+
<resources>
68+
<resource>
69+
<directory>src/test/java/com/toddfast/mutagen/cassandra/test/mutations</directory>
70+
<filtering>true</filtering>
71+
<includes>
72+
<include>**/*.java</include>
73+
<include>**/*.cql</include>
74+
</includes>
75+
</resource>
76+
</resources>
77+
</configuration>
78+
</execution>
79+
</executions>
80+
</plugin>
81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-compiler-plugin</artifactId>
84+
<version>3.3</version>
85+
<configuration>
86+
<source>${java.version}</source>
87+
<target>${java.version}</target>
88+
</configuration>
89+
</plugin>
90+
<plugin>
91+
<groupId>org.apache.maven.plugins</groupId>
92+
<artifactId>maven-resources-plugin</artifactId>
93+
<version>2.7</version>
94+
<configuration>
95+
<encoding>UTF-8</encoding>
96+
</configuration>
97+
</plugin>
98+
</plugins>
99+
<defaultGoal>clean package</defaultGoal>
100+
</build>
101+
102+
<dependencies>
103+
104+
<dependency>
105+
<groupId>com.toddfast.mutagen</groupId>
106+
<artifactId>mutagen</artifactId>
107+
<version>0.3.0</version>
108+
</dependency>
77109

78110
<dependency>
79111
<groupId>com.datastax.cassandra</groupId>
80112
<artifactId>cassandra-driver-core</artifactId>
81113
<version>3.0.0</version>
82114
</dependency>
83-
<dependency>
84-
<groupId>com.datastax.cassandra</groupId>
85-
<artifactId>cassandra-driver-mapping</artifactId>
86-
<version>3.0.0</version>
87-
</dependency>
115+
<dependency>
116+
<groupId>com.datastax.cassandra</groupId>
117+
<artifactId>cassandra-driver-mapping</artifactId>
118+
<version>3.0.0</version>
119+
</dependency>
88120
<dependency>
89121
<groupId>com.google.guava</groupId>
90122
<artifactId>guava</artifactId>
91123
<version>18.0</version>
92124
</dependency>
93125

94-
<dependency>
95-
<groupId>commons-io</groupId>
96-
<artifactId>commons-io</artifactId>
97-
<version>2.4</version>
98-
</dependency>
99-
100-
<!-- http://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
101-
<dependency>
102-
<groupId>org.slf4j</groupId>
103-
<artifactId>slf4j-api</artifactId>
104-
<version>1.7.21</version>
105-
</dependency>
106-
107-
108-
<dependency>
109-
<groupId>junit</groupId>
110-
<artifactId>junit</artifactId>
111-
<version>4.10</version>
112-
<scope>test</scope>
113-
</dependency>
114-
115-
<dependency>
116-
<groupId>org.cassandraunit</groupId>
117-
<artifactId>cassandra-unit</artifactId>
118-
<version>2.1.3.1</version>
119-
<scope>test</scope>
120-
</dependency>
126+
<dependency>
127+
<groupId>commons-io</groupId>
128+
<artifactId>commons-io</artifactId>
129+
<version>2.4</version>
130+
</dependency>
131+
132+
<!-- http://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
133+
<dependency>
134+
<groupId>org.slf4j</groupId>
135+
<artifactId>slf4j-api</artifactId>
136+
<version>1.7.21</version>
137+
</dependency>
138+
139+
140+
<dependency>
141+
<groupId>junit</groupId>
142+
<artifactId>junit</artifactId>
143+
<version>4.10</version>
144+
<scope>test</scope>
145+
</dependency>
146+
147+
<dependency>
148+
<groupId>org.cassandraunit</groupId>
149+
<artifactId>cassandra-unit</artifactId>
150+
<version>2.1.3.1</version>
151+
<scope>test</scope>
152+
</dependency>
121153

122154
</dependencies>
123155
</project>

0 commit comments

Comments
 (0)