Skip to content

Commit

Permalink
Updated package configurations and file names
Browse files Browse the repository at this point in the history
  • Loading branch information
martinlau committed Jul 2, 2013
1 parent 7b83d62 commit 7a17b74
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/liquibase/changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@
<comment>Insert 'USER_AUTHORITIES' data</comment>

<loadData tableName="USER_AUTHORITIES"
file="/META-INF/liquibase/data/user_authorities.csv"/>
file="/META-INF/liquibase/data/user-authorities.csv"/>

</changeSet>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<comment>Insert 'USERS' test data</comment>

<loadData tableName="USERS"
file="/META-INF/liquibase/test/data/users.csv"/>
file="/META-INF/liquibase/data/users-test.csv"/>

</changeSet>

Expand All @@ -19,7 +19,7 @@
<comment>Insert 'USER_AUTHORITIES' test data</comment>

<loadData tableName="USER_AUTHORITIES"
file="/META-INF/liquibase/test/data/user_authorities.csv"/>
file="/META-INF/liquibase/data/user-authorities-test.csv"/>

</changeSet>

Expand All @@ -29,7 +29,7 @@
<comment>Insert 'USER_ACCOUNT_TOKENS' test data</comment>

<loadData tableName="USER_ACCOUNT_TOKENS"
file="/META-INF/liquibase/test/data/user_account_tokens.csv"/>
file="/META-INF/liquibase/data/user-account-tokens-test.csv"/>

</changeSet>

Expand All @@ -39,7 +39,7 @@
<comment>Insert 'USER_PROFILES' test data</comment>

<loadData tableName="USER_PROFILES"
file="/META-INF/liquibase/test/data/user_profiles.csv"/>
file="/META-INF/liquibase/data/user-profiles-test.csv"/>

</changeSet>

Expand All @@ -49,7 +49,7 @@
<comment>Insert 'PERSISTENT_LOGINS' test data</comment>

<loadData tableName="PERSISTENT_LOGINS"
file="/META-INF/liquibase/test/data/persistent_logins.csv"/>
file="/META-INF/liquibase/data/persistent-logins-test.csv"/>

</changeSet>

Expand All @@ -59,7 +59,7 @@
<comment>Insert 'GROUPS' test data</comment>

<loadData tableName="GROUPS"
file="/META-INF/liquibase/test/data/groups.csv"/>
file="/META-INF/liquibase/data/groups-test.csv"/>

</changeSet>

Expand All @@ -69,7 +69,7 @@
<comment>Insert 'GROUP_AUTHORITIES' test data</comment>

<loadData tableName="GROUP_AUTHORITIES"
file="/META-INF/liquibase/test/data/group_authorities.csv"/>
file="/META-INF/liquibase/data/group-authorities-test.csv"/>

</changeSet>

Expand All @@ -79,7 +79,7 @@
<comment>Insert 'GROUP_MEMBERS' test data</comment>

<loadData tableName="GROUP_MEMBERS"
file="/META-INF/liquibase/test/data/group_members.csv"/>
file="/META-INF/liquibase/data/group-members-test.csv"/>

</changeSet>

Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/META-INF/spring/fixture-domain-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<bean id="liquibase-test"
class="liquibase.integration.spring.SpringLiquibase"
p:dataSource-ref="dataSource"
p:changeLog="classpath:/META-INF/liquibase/test/changelog.xml"/>
p:changeLog="classpath:/META-INF/liquibase/changelog-test.xml"/>

</beans>

0 comments on commit 7a17b74

Please sign in to comment.