diff --git a/auth/build.gradle b/auth/build.gradle
index 551de7b00255c16e74930cd1a6841d380f395a10..35b3dd2b3a7b7a0619fc7d0d170081c15b47b900 100644
--- a/auth/build.gradle
+++ b/auth/build.gradle
@@ -3,7 +3,6 @@ apply plugin: 'org.jetbrains.kotlin.android'
 apply plugin: 'androidx.navigation.safeargs.kotlin'
 apply plugin: 'kotlin-kapt'
 apply plugin: 'dagger.hilt.android.plugin'
-apply plugin: 'maven-publish'
 
 android {
     namespace 'org.futo.circles.auth'
@@ -61,12 +60,6 @@ android {
             version '3.22.1'
         }
     }
-    publishing {
-        singleVariant("release") {
-            withSourcesJar()
-            withJavadocJar()
-        }
-    }
 }
 
 dependencies {
@@ -101,18 +94,4 @@ dependencies {
 
 kapt {
     correctErrorTypes = true
-}
-
-publishing {
-    publications {
-        release(MavenPublication) {
-            groupId = rootProject.ext.modules_groupId
-            artifactId = "auth-gplay"
-            version rootProject.ext.modules_version
-
-            afterEvaluate {
-                from components.gplayRelease
-            }
-        }
-    }
 }
\ No newline at end of file
diff --git a/build.gradle b/build.gradle
index ef9f3bfd918b0267b6c494e630ee11e2fa4e8e4c..d48fe4bbe43e034bd3cbd8cd5c8e4d86398fbe55 100644
--- a/build.gradle
+++ b/build.gradle
@@ -4,8 +4,6 @@ buildscript {
         min_sdk_version = 24
         androidx_nav_version = '2.7.7'
         hilt_version = '2.51.1'
-        modules_version = "1.0.9"
-        modules_groupId = "org.futo.gitlab.circles"
     }
     repositories {
         google()
diff --git a/core/build.gradle b/core/build.gradle
index 21ae032d638755404b476118fc059b5db0cee33e..b6a480387d82f96bff897714260de9ff01cf945b 100644
--- a/core/build.gradle
+++ b/core/build.gradle
@@ -3,7 +3,6 @@ apply plugin: 'org.jetbrains.kotlin.android'
 apply plugin: 'androidx.navigation.safeargs.kotlin'
 apply plugin: 'kotlin-kapt'
 apply plugin: 'dagger.hilt.android.plugin'
-apply plugin: 'maven-publish'
 
 
 android {
@@ -41,12 +40,6 @@ android {
                 "-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
         ]
     }
-    publishing {
-        singleVariant("release") {
-            withSourcesJar()
-            withJavadocJar()
-        }
-    }
 }
 
 dependencies {
@@ -128,18 +121,4 @@ dependencies {
 
 kapt {
     correctErrorTypes = true
-}
-
-publishing {
-    publications {
-        release(MavenPublication) {
-            groupId = rootProject.ext.modules_groupId
-            artifactId = "core"
-            version rootProject.ext.modules_version
-
-            afterEvaluate {
-                from components.release
-            }
-        }
-    }
 }
\ No newline at end of file