Changed project uri

This commit is contained in:
Martino Ferrari
2026-01-23 11:46:59 +01:00
parent 4379960835
commit 99bd5bffdd
35 changed files with 100 additions and 100 deletions

View File

@@ -4,13 +4,13 @@ import (
"bytes" "bytes"
"os" "os"
"github.com/marte-dev/marte-dev-tools/internal/builder" "github.com/marte-community/marte-dev-tools/internal/builder"
"github.com/marte-dev/marte-dev-tools/internal/formatter" "github.com/marte-community/marte-dev-tools/internal/formatter"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/logger" "github.com/marte-community/marte-dev-tools/internal/logger"
"github.com/marte-dev/marte-dev-tools/internal/lsp" "github.com/marte-community/marte-dev-tools/internal/lsp"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func main() { func main() {

2
go.mod
View File

@@ -1,4 +1,4 @@
module github.com/marte-dev/marte-dev-tools module github.com/marte-community/marte-dev-tools
go 1.25.6 go 1.25.6

View File

@@ -6,8 +6,8 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
) )
type Builder struct { type Builder struct {

View File

@@ -6,7 +6,7 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
) )
type Insertable struct { type Insertable struct {

View File

@@ -5,8 +5,8 @@ import (
"path/filepath" "path/filepath"
"strings" "strings"
"github.com/marte-dev/marte-dev-tools/internal/logger" "github.com/marte-community/marte-dev-tools/internal/logger"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
) )
type ProjectTree struct { type ProjectTree struct {

View File

@@ -9,11 +9,11 @@ import (
"os" "os"
"strings" "strings"
"github.com/marte-dev/marte-dev-tools/internal/formatter" "github.com/marte-community/marte-dev-tools/internal/formatter"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/logger" "github.com/marte-community/marte-dev-tools/internal/logger"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
type JsonRpcMessage struct { type JsonRpcMessage struct {

View File

@@ -7,8 +7,8 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
) )
func TestInitProjectScan(t *testing.T) { func TestInitProjectScan(t *testing.T) {

View File

@@ -3,7 +3,7 @@ package parser_test
import ( import (
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
) )
func TestParserStrictness(t *testing.T) { func TestParserStrictness(t *testing.T) {

View File

@@ -8,9 +8,9 @@ import (
"cuelang.org/go/cue" "cuelang.org/go/cue"
"cuelang.org/go/cue/errors" "cuelang.org/go/cue/errors"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/schema" "github.com/marte-community/marte-dev-tools/internal/schema"
) )
type DiagnosticLevel int type DiagnosticLevel int

View File

@@ -5,7 +5,7 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/builder" "github.com/marte-community/marte-dev-tools/internal/builder"
) )
func TestMultiFileBuildMergeAndOrder(t *testing.T) { func TestMultiFileBuildMergeAndOrder(t *testing.T) {

View File

@@ -7,11 +7,11 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/builder" "github.com/marte-community/marte-dev-tools/internal/builder"
"github.com/marte-dev/marte-dev-tools/internal/formatter" "github.com/marte-community/marte-dev-tools/internal/formatter"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestCheckCommand(t *testing.T) { func TestCheckCommand(t *testing.T) {

View File

@@ -3,8 +3,8 @@ package integration
import ( import (
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
) )
func TestLSPHoverDoc(t *testing.T) { func TestLSPHoverDoc(t *testing.T) {

View File

@@ -3,8 +3,8 @@ package integration
import ( import (
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
) )
func TestGetNodeContaining(t *testing.T) { func TestGetNodeContaining(t *testing.T) {

View File

@@ -3,9 +3,9 @@ package integration
import ( import (
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestLSPSignalReferences(t *testing.T) { func TestLSPSignalReferences(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"io/ioutil" "io/ioutil"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
// Helper to load and parse a file // Helper to load and parse a file

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestMDSWriterValidation(t *testing.T) { func TestMDSWriterValidation(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestPIDGAMValidation(t *testing.T) { func TestPIDGAMValidation(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestRealTimeApplicationValidation(t *testing.T) { func TestRealTimeApplicationValidation(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestSDNSubscriberValidation(t *testing.T) { func TestSDNSubscriberValidation(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestFunctionsArrayValidation(t *testing.T) { func TestFunctionsArrayValidation(t *testing.T) {

View File

@@ -3,9 +3,9 @@ package integration
import ( import (
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestGAMSignalLinking(t *testing.T) { func TestGAMSignalLinking(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestGAMSignalValidation(t *testing.T) { func TestGAMSignalValidation(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestGlobalPragmaDebug(t *testing.T) { func TestGlobalPragmaDebug(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestGlobalPragma(t *testing.T) { func TestGlobalPragma(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestGlobalPragmaUpdate(t *testing.T) { func TestGlobalPragmaUpdate(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestIgnorePragma(t *testing.T) { func TestIgnorePragma(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestImplicitSignal(t *testing.T) { func TestImplicitSignal(t *testing.T) {

View File

@@ -5,9 +5,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func parseAndAddToIndex(t *testing.T, idx *index.ProjectTree, filePath string) { func parseAndAddToIndex(t *testing.T, idx *index.ProjectTree, filePath string) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestPragmaSuppression(t *testing.T) { func TestPragmaSuppression(t *testing.T) {

View File

@@ -6,9 +6,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestProjectSpecificSchema(t *testing.T) { func TestProjectSpecificSchema(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestSchemaValidationType(t *testing.T) { func TestSchemaValidationType(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestSignalProperties(t *testing.T) { func TestSignalProperties(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestSignalValidation(t *testing.T) { func TestSignalValidation(t *testing.T) {

View File

@@ -4,9 +4,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestSignalsContentValidation(t *testing.T) { func TestSignalsContentValidation(t *testing.T) {

View File

@@ -3,9 +3,9 @@ package integration
import ( import (
"testing" "testing"
"github.com/marte-dev/marte-dev-tools/internal/index" "github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser" "github.com/marte-community/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator" "github.com/marte-community/marte-dev-tools/internal/validator"
) )
func TestUnusedGAM(t *testing.T) { func TestUnusedGAM(t *testing.T) {