Skip to content

Commit b9bb9c0

Browse files
committed
Fix parent pom name
Signed-off-by: Marvin Froeder <marvin@datasqrl.com>
1 parent 4c4a38b commit b9bb9c0

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

formats/flexible-csv-format/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<modelVersion>4.0.0</modelVersion>
2222
<parent>
2323
<groupId>com.datasqrl.flinkrunner</groupId>
24-
<artifactId>flink-sql-runner-parent</artifactId>
24+
<artifactId>formats</artifactId>
2525
<version>1.0.0-SNAPSHOT</version>
2626
</parent>
2727

formats/flexible-csv-format/src/main/java/com/datasqrl/csv/FlexibleCsv.java renamed to formats/flexible-csv-format/src/main/java/com/datasqrl/flink/format/csv/FlexibleCsv.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package com.datasqrl.csv;
16+
package com.datasqrl.flink.format.csv;
1717

1818
import java.io.IOException;
1919
import java.util.Set;

formats/flexible-json-format/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<modelVersion>4.0.0</modelVersion>
2222
<parent>
2323
<groupId>com.datasqrl.flinkrunner</groupId>
24-
<artifactId>flink-sql-runner-parent</artifactId>
24+
<artifactId>formats</artifactId>
2525
<version>1.0.0-SNAPSHOT</version>
2626
</parent>
2727

formats/flexible-json-format/src/main/java/com/datasqrl/format/FlexibleJsonFormat.java renamed to formats/flexible-json-format/src/main/java/com/datasqrl/flink/format/json/FlexibleJsonFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package com.datasqrl.format;
16+
package com.datasqrl.flink.format.json;
1717

1818
import static org.apache.flink.formats.json.JsonFormatOptions.ENCODE_DECIMAL_AS_PLAIN_NUMBER;
1919
import static org.apache.flink.formats.json.JsonFormatOptions.MAP_NULL_KEY_LITERAL;

formats/flexible-json-format/src/main/java/com/datasqrl/format/SqrlJsonRowDataSerializationSchema.java renamed to formats/flexible-json-format/src/main/java/com/datasqrl/flink/format/json/SqrlJsonRowDataSerializationSchema.java

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package com.datasqrl.format; /*
17-
* Licensed to the Apache Software Foundation (ASF) under one
18-
* or more contributor license agreements. See the NOTICE file
19-
* distributed with this work for additional information
20-
* regarding copyright ownership. The ASF licenses this file
21-
* to you under the Apache License, Version 2.0 (the
22-
* "License"); you may not use this file except in compliance
23-
* with the License. You may obtain a copy of the License at
24-
*
25-
* http://www.apache.org/licenses/LICENSE-2.0
26-
*
27-
* Unless required by applicable law or agreed to in writing, software
28-
* distributed under the License is distributed on an "AS IS" BASIS,
29-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30-
* See the License for the specific language governing permissions and
31-
* limitations under the License.
32-
*/
16+
package com.datasqrl.flink.format.json; /*
17+
* Licensed to the Apache Software Foundation (ASF) under one
18+
* or more contributor license agreements. See the NOTICE file
19+
* distributed with this work for additional information
20+
* regarding copyright ownership. The ASF licenses this file
21+
* to you under the Apache License, Version 2.0 (the
22+
* "License"); you may not use this file except in compliance
23+
* with the License. You may obtain a copy of the License at
24+
*
25+
* http://www.apache.org/licenses/LICENSE-2.0
26+
*
27+
* Unless required by applicable law or agreed to in writing, software
28+
* distributed under the License is distributed on an "AS IS" BASIS,
29+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30+
* See the License for the specific language governing permissions and
31+
* limitations under the License.
32+
*/
3333

3434
import java.util.Objects;
3535
import org.apache.flink.annotation.Internal;

formats/flexible-json-format/src/main/java/com/datasqrl/format/SqrlRowDataToJsonConverters.java renamed to formats/flexible-json-format/src/main/java/com/datasqrl/flink/format/json/SqrlRowDataToJsonConverters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package com.datasqrl.format;
16+
package com.datasqrl.flink.format.json;
1717

1818
import com.datasqrl.types.json.FlinkJsonType;
1919
import org.apache.flink.formats.common.TimestampFormat;

0 commit comments

Comments
 (0)